]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-native-macosx: Copy all translations, not just DE.
[sigrok-util.git] / cross-compile / mingw / sigrok-cross-mingw
CommitLineData
533e3e6c 1#!/bin/sh
91d4c754
UH
2##
3## This file is part of the sigrok-util project.
4##
d24d85a2 5## Copyright (C) 2013-2020 Uwe Hermann <uwe@hermann-uwe.de>
91d4c754
UH
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; either version 2 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
b65a0b06 18## along with this program; if not, see <http://www.gnu.org/licenses/>.
91d4c754
UH
19##
20
d0793c36
ML
21set -e
22
749d4097
UH
23# Build target: "i686" (32bit) or "x86_64" (64bit).
24TARGET="i686"
25
91d4c754
UH
26# The path where your MXE directory is located.
27MXE=$HOME/mxe-git
28
87b10530
C
29# The base path prefix where the cross-compiled packages will be installed.
30PREFIXBASE=$HOME/sr_mingw
91d4c754 31
87b10530
C
32# The base path prefix where to download files to and where to build packages.
33BUILDBASE=./build
91d4c754 34
1f1780d8
UH
35# Edit this to control verbose build output.
36# V="V=1 VERBOSE=1"
37
e2eb056c
UH
38# Edit this to enable/disable/modify parallel compiles.
39PARALLEL="-j 2"
40
5fed26f2
UH
41# Edit this to enable/disable debug builds.
42DEBUG=0
43
91d4c754
UH
44# You usually don't need to change anything below this line.
45
46# -----------------------------------------------------------------------------
47
fd214a32 48WGET="wget -c --quiet"
a51ca6bd 49GIT_CLONE="git clone --depth=1"
b7259b10 50
e5a835ea
UH
51REPO_BASE="git://sigrok.org"
52
87b10530
C
53# Construct the build and install directory pathnames.
54if [ $TARGET = "i686" ]; then
55 SUFFIX="32"
56else
57 SUFFIX="64"
58fi
59if [ $DEBUG = 1 ]; then
60 # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
61 BUILD_TYPE="Debug"
62 PREFIX=$PREFIXBASE"_debug_"$SUFFIX
63 BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
64else
65 BUILD_TYPE="Release"
66 PREFIX=$PREFIXBASE"_release_"$SUFFIX
67 BUILDDIR=$BUILDBASE"_release_"$SUFFIX
68fi
69
50d4aefd
UH
70# -----------------------------------------------------------------------------
71
b73b66ae
UH
72# We need to find tools in the toolchain.
73export PATH=$MXE/usr/bin:$PATH
91d4c754 74
01b17442 75TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
2c1ce0e4 76
aaafb7ec
UH
77CMAKE="$TOOLCHAIN_TRIPLET-cmake"
78
91d4c754 79P="$PREFIX/lib/pkgconfig"
2c1ce0e4 80P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
4e8697df 81C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
91d4c754
UH
82L="--disable-shared --enable-static"
83
533e3e6c 84if [ $TARGET = "i686" ]; then
01b17442 85 export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
749d4097 86else
01b17442 87 export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
749d4097 88fi
ccf354f1 89
91d4c754
UH
90# Remove build directory contents (if any) and create a new build dir.
91rm -rf $BUILDDIR
92mkdir $BUILDDIR
93cd $BUILDDIR
94
95# -----------------------------------------------------------------------------
96
5f44a368
UH
97mkdir -p $PREFIX
98
91d4c754 99# Cross-compiling Python is highly non-trivial, so we avoid it for now.
1e3d3d6a 100# The download below is a repackaged tarball of the official Python 3.4.4 MSI
749d4097 101# installer for Windows:
1e3d3d6a
UH
102# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi
103# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.amd64.msi
104# The MSI file has been installed on a Windows box and then c:\Python34\libs
105# and c:\Python34\include have been stored in the Python34_*.tar.gz tarball.
106$WGET http://www.sigrok.org/tmp/Python34_$TARGET.tar.gz -O $PREFIX/Python34.tar.gz
107tar xzf $PREFIX/Python34.tar.gz -C $PREFIX
91d4c754 108
a5d9803f
UH
109# Fix for bug #1195.
110if [ $TARGET = "x86_64" ]; then
111 patch -p1 $PREFIX/Python34/include/pyconfig.h < ../pyconfig.patch
112fi
113
cd6c7174
UH
114# Create a dummy python3.pc file so that pkg-config finds Python 3.
115mkdir -p $PREFIX/lib/pkgconfig
116cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
117prefix=$PREFIX
118exec_prefix=\${prefix}
119libdir=\${exec_prefix}/lib
120includedir=\${prefix}/include
121Name: Python
122Description: Python library
1e3d3d6a
UH
123Version: 3.4
124Libs: $PREFIX/Python34/libs/libpython34.a
125Cflags: -I$PREFIX/Python34/include
91d4c754 126EOF
91d4c754 127
1e3d3d6a 128# The python34.dll and python34.zip files will be shipped in the NSIS
5f44a368 129# Windows installers (required for protocol decoding to work).
1e3d3d6a
UH
130# The file python34.dll (NOT the same as python3.dll) is copied from an
131# installed Python 3.4.4 (see above) from c:\Windows\system32\python34.dll.
132# The file python34.zip contains all files from the 'DLLs', 'Lib', and 'libs'
133# subdirectories from an installed Python on Windows (c:\python34), i.e. some
134# libraries and all Python stdlib modules.
135$WGET http://www.sigrok.org/tmp/python34_$TARGET.dll -O $PREFIX/python34.dll
136$WGET http://www.sigrok.org/tmp/python34_$TARGET.zip -O $PREFIX/python34.zip
6ba97136 137
35783694
UH
138# In order to link against Python we need libpython34.a.
139# The upstream Python 32bit installer ships this, the x86_64 installer
140# doesn't. Thus, we generate the file manually here.
141if [ $TARGET = "x86_64" ]; then
142 cp $PREFIX/python34.dll .
143 $MXE/usr/$TARGET-w64-mingw32.static.posix/bin/gendef python34.dll
144 $MXE/usr/bin/$TARGET-w64-mingw32.static.posix-dlltool \
145 --dllname python34.dll --def python34.def \
146 --output-lib libpython34.a
147 mv -f libpython34.a $PREFIX/Python34/libs
148 rm -f python34.dll
149fi
150
d24d85a2
UH
151# We need to include the *.pyd files from python34.zip into the installers,
152# otherwise importing certain modules (e.g. ctypes) won't work (bug #1409).
153unzip -q $PREFIX/python34.zip *.pyd -d $PREFIX
154
37d3fad3 155# Zadig (we ship this with frontends for easy driver switching).
a5921d6c
UH
156$WGET https://github.com/pbatard/libwdi/releases/download/b721/zadig-2.4.exe -O $PREFIX/zadig.exe
157$WGET https://github.com/pbatard/libwdi/releases/download/v1.2.5/zadig_xp-2.2.exe -O $PREFIX/zadig_xp.exe
37d3fad3 158
e4b264d1
UH
159# libusb
160$GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
161cd libusb
38599f9c 162patch -p1 < ../../libusb_raw_io.patch
3dcba30d
UH
163./bootstrap.sh
164./configure $C $L
e4b264d1
UH
165make -j1 $V
166make install $V
167cd ..
168
43ffde97 169# libserialport
e5a835ea 170$GIT_CLONE $REPO_BASE/libserialport
43ffde97
UH
171cd libserialport
172./autogen.sh
9df9ed3a 173./configure $C $L
1f1780d8
UH
174make $PARALLEL $V
175make install $V
43ffde97
UH
176cd ..
177
91d4c754 178# libsigrok
e5a835ea 179$GIT_CLONE $REPO_BASE/libsigrok
91d4c754
UH
180cd libsigrok
181./autogen.sh
ccf354f1 182./configure $C $L
1f1780d8
UH
183make $PARALLEL $V
184make install $V
91d4c754
UH
185cd ..
186
187# libsigrokdecode
e5a835ea 188$GIT_CLONE $REPO_BASE/libsigrokdecode
91d4c754
UH
189cd libsigrokdecode
190./autogen.sh
ccf354f1 191./configure $C $L
1f1780d8
UH
192make $PARALLEL $V
193make install $V
91d4c754
UH
194cd ..
195
885dc089 196# sigrok-firmware
e5a835ea 197$GIT_CLONE $REPO_BASE/sigrok-firmware
885dc089
UH
198cd sigrok-firmware
199./autogen.sh
200# Nothing gets cross-compiled here, we just need 'make install' basically.
201./configure --prefix=$PREFIX
1f1780d8 202make install $V
885dc089
UH
203cd ..
204
205# sigrok-firmware-fx2lafw
e5a835ea 206$GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
885dc089
UH
207cd sigrok-firmware-fx2lafw
208./autogen.sh
209# We're building the fx2lafw firmware on the host, no need to cross-compile.
210./configure --prefix=$PREFIX
1f1780d8
UH
211make $PARALLEL $V
212make install $V
885dc089
UH
213cd ..
214
9de2e03d 215# sigrok-dumps
e5a835ea 216$GIT_CLONE $REPO_BASE/sigrok-dumps
9de2e03d 217cd sigrok-dumps
1f1780d8 218make install DESTDIR=$PREFIX/share/sigrok-dumps $V
9de2e03d
UH
219cd ..
220
91d4c754 221# sigrok-cli
e5a835ea 222$GIT_CLONE $REPO_BASE/sigrok-cli
91d4c754
UH
223cd sigrok-cli
224./autogen.sh
ccf354f1 225./configure $C
1f1780d8
UH
226make $PARALLEL $V
227make install $V
193646a8 228makensis contrib/sigrok-cli_cross.nsi
91d4c754
UH
229cd ..
230
91d4c754 231# PulseView
e5a835ea 232$GIT_CLONE $REPO_BASE/pulseview
91d4c754 233cd pulseview
e060d94e 234cp ../../FileAssociation.nsh contrib
682d505b
C
235$CMAKE \
236 -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
237 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
238 -DDISABLE_WERROR=y \
87b10530 239 -DENABLE_TESTS=y \
682d505b 240 .
1f1780d8 241make $PARALLEL $V
fd000407 242make manual
5fed26f2
UH
243if [ $DEBUG = 1 ]; then
244 make install $V
245else
246 make install/strip $V
247fi
193646a8 248makensis contrib/pulseview_cross.nsi
91d4c754
UH
249cd ..
250