]> sigrok.org Git - sigrok-util.git/blob - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-android: Drop unused/obsolete MIPS support.
[sigrok-util.git] / cross-compile / mingw / sigrok-cross-mingw
1 #!/bin/sh
2 ##
3 ## This file is part of the sigrok-util project.
4 ##
5 ## Copyright (C) 2013-2018 Uwe Hermann <uwe@hermann-uwe.de>
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
18 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
19 ##
20
21 set -e
22
23 # Build target: "i686" (32bit) or "x86_64" (64bit).
24 TARGET="i686"
25
26 # The path where your MXE directory is located.
27 MXE=$HOME/mxe-git
28
29 # The base path prefix where the cross-compiled packages will be installed.
30 PREFIXBASE=$HOME/sr_mingw
31
32 # The base path prefix where to download files to and where to build packages.
33 BUILDBASE=./build
34
35 # Edit this to control verbose build output.
36 # V="V=1 VERBOSE=1"
37
38 # Edit this to enable/disable/modify parallel compiles.
39 PARALLEL="-j 2"
40
41 # Edit this to enable/disable debug builds.
42 DEBUG=0
43
44 # You usually don't need to change anything below this line.
45
46 # -----------------------------------------------------------------------------
47
48 WGET="wget -c --quiet"
49 GIT_CLONE="git clone --depth=1"
50
51 REPO_BASE="git://sigrok.org"
52
53 # Construct the build and install directory pathnames.
54 if [ $TARGET = "i686" ]; then
55         SUFFIX="32"
56 else
57         SUFFIX="64"
58 fi
59 if [ $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
64 else
65         BUILD_TYPE="Release"
66         PREFIX=$PREFIXBASE"_release_"$SUFFIX
67         BUILDDIR=$BUILDBASE"_release_"$SUFFIX
68 fi
69
70 # -----------------------------------------------------------------------------
71
72 # We need to find tools in the toolchain.
73 export PATH=$MXE/usr/bin:$PATH
74
75 TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
76
77 CMAKE="$TOOLCHAIN_TRIPLET-cmake"
78
79 P="$PREFIX/lib/pkgconfig"
80 P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
81 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
82 L="--disable-shared --enable-static"
83
84 if [ $TARGET = "i686" ]; then
85         export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
86 else
87         export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
88 fi
89
90 # Remove build directory contents (if any) and create a new build dir.
91 rm -rf $BUILDDIR
92 mkdir $BUILDDIR
93 cd $BUILDDIR
94
95 # -----------------------------------------------------------------------------
96
97 mkdir -p $PREFIX
98
99 # Cross-compiling Python is highly non-trivial, so we avoid it for now.
100 # The download below is a repackaged tarball of the official Python 3.4.4 MSI
101 # installer for Windows:
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
107 tar xzf $PREFIX/Python34.tar.gz -C $PREFIX
108
109 # Fix for bug #1195.
110 if [ $TARGET = "x86_64" ]; then
111         patch -p1 $PREFIX/Python34/include/pyconfig.h < ../pyconfig.patch
112 fi
113
114 # Create a dummy python3.pc file so that pkg-config finds Python 3.
115 mkdir -p $PREFIX/lib/pkgconfig
116 cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF 
117 prefix=$PREFIX
118 exec_prefix=\${prefix}
119 libdir=\${exec_prefix}/lib
120 includedir=\${prefix}/include
121 Name: Python
122 Description: Python library
123 Version: 3.4
124 Libs: $PREFIX/Python34/libs/libpython34.a
125 Cflags: -I$PREFIX/Python34/include
126 EOF
127
128 # The python34.dll and python34.zip files will be shipped in the NSIS
129 # Windows installers (required for protocol decoding to work).
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
137
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.
141 if [ $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
149 fi
150
151 # Zadig (we ship this with frontends for easy driver switching).
152 $WGET https://github.com/pbatard/libwdi/releases/download/b721/zadig-2.4.exe -O $PREFIX/zadig.exe
153 $WGET https://github.com/pbatard/libwdi/releases/download/v1.2.5/zadig_xp-2.2.exe -O $PREFIX/zadig_xp.exe
154
155 # libusb
156 $GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
157 cd libusb
158 patch -p1 < ../../libusb_raw_io.patch
159 ./bootstrap.sh
160 ./configure $C $L
161 make -j1 $V
162 make install $V
163 cd ..
164
165 # libserialport
166 $GIT_CLONE $REPO_BASE/libserialport
167 cd libserialport
168 ./autogen.sh
169 ./configure $C $L
170 make $PARALLEL $V
171 make install $V
172 cd ..
173
174 # libsigrok
175 $GIT_CLONE $REPO_BASE/libsigrok
176 cd libsigrok
177 ./autogen.sh
178 ./configure $C $L
179 make $PARALLEL $V
180 make install $V
181 cd ..
182
183 # libsigrokdecode
184 $GIT_CLONE $REPO_BASE/libsigrokdecode
185 cd libsigrokdecode
186 ./autogen.sh
187 ./configure $C $L
188 make $PARALLEL $V
189 make install $V
190 cd ..
191
192 # sigrok-firmware
193 $GIT_CLONE $REPO_BASE/sigrok-firmware
194 cd sigrok-firmware
195 ./autogen.sh
196 # Nothing gets cross-compiled here, we just need 'make install' basically.
197 ./configure --prefix=$PREFIX
198 make install $V
199 cd ..
200
201 # sigrok-firmware-fx2lafw
202 $GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
203 cd sigrok-firmware-fx2lafw
204 ./autogen.sh
205 # We're building the fx2lafw firmware on the host, no need to cross-compile.
206 ./configure --prefix=$PREFIX
207 make $PARALLEL $V
208 make install $V
209 cd ..
210
211 # sigrok-dumps
212 $GIT_CLONE $REPO_BASE/sigrok-dumps
213 cd sigrok-dumps
214 make install DESTDIR=$PREFIX/share/sigrok-dumps $V
215 cd ..
216
217 # sigrok-cli
218 $GIT_CLONE $REPO_BASE/sigrok-cli
219 cd sigrok-cli
220 ./autogen.sh
221 ./configure $C
222 make $PARALLEL $V
223 make install $V
224 makensis contrib/sigrok-cli_cross.nsi
225 cd ..
226
227 # PulseView
228 $GIT_CLONE $REPO_BASE/pulseview
229 cd pulseview
230 cp ../../FileAssociation.nsh contrib
231 $CMAKE \
232         -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
233         -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
234         -DDISABLE_WERROR=y \
235         -DENABLE_TESTS=y \
236         .
237 make $PARALLEL $V
238 make manual
239 if [ $DEBUG = 1 ]; then
240         make install $V
241 else
242         make install/strip $V
243 fi
244 makensis contrib/pulseview_cross.nsi
245 cd ..
246