]> sigrok.org Git - sigrok-util.git/blob - cross-compile/mingw/sigrok-cross-mingw
mingw/msys2: Make build directory names reflect debug/release and 32/64
[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 SF_MIRROR=switch.dl.sourceforge.net
49
50 WGET="wget -c --quiet"
51 GIT_CLONE="git clone --depth=1"
52
53 REPO_BASE="git://sigrok.org"
54
55 # Construct the build and install directory pathnames.
56 if [ $TARGET = "i686" ]; then
57         SUFFIX="32"
58 else
59         SUFFIX="64"
60 fi
61 if [ $DEBUG = 1 ]; then
62         # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
63         BUILD_TYPE="Debug"
64         PREFIX=$PREFIXBASE"_debug_"$SUFFIX
65         BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
66 else
67         BUILD_TYPE="Release"
68         PREFIX=$PREFIXBASE"_release_"$SUFFIX
69         BUILDDIR=$BUILDBASE"_release_"$SUFFIX
70 fi
71
72 # -----------------------------------------------------------------------------
73
74 # We need to find tools in the toolchain.
75 export PATH=$MXE/usr/bin:$PATH
76
77 TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
78
79 CMAKE="$TOOLCHAIN_TRIPLET-cmake"
80
81 P="$PREFIX/lib/pkgconfig"
82 P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
83 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
84 L="--disable-shared --enable-static"
85
86 if [ $TARGET = "i686" ]; then
87         export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
88 else
89         export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
90 fi
91
92 # Remove build directory contents (if any) and create a new build dir.
93 rm -rf $BUILDDIR
94 mkdir $BUILDDIR
95 cd $BUILDDIR
96
97 # -----------------------------------------------------------------------------
98
99 mkdir -p $PREFIX
100
101 # Cross-compiling Python is highly non-trivial, so we avoid it for now.
102 # The download below is a repackaged tarball of the official Python 3.4.4 MSI
103 # installer for Windows:
104 #   - https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi
105 #   - https://www.python.org/ftp/python/3.4.4/python-3.4.4.amd64.msi
106 # The MSI file has been installed on a Windows box and then c:\Python34\libs
107 # and c:\Python34\include have been stored in the Python34_*.tar.gz tarball.
108 $WGET http://www.sigrok.org/tmp/Python34_$TARGET.tar.gz -O $PREFIX/Python34.tar.gz
109 tar xzf $PREFIX/Python34.tar.gz -C $PREFIX
110
111 # Create a dummy python3.pc file so that pkg-config finds Python 3.
112 mkdir -p $PREFIX/lib/pkgconfig
113 cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF 
114 prefix=$PREFIX
115 exec_prefix=\${prefix}
116 libdir=\${exec_prefix}/lib
117 includedir=\${prefix}/include
118 Name: Python
119 Description: Python library
120 Version: 3.4
121 Libs: $PREFIX/Python34/libs/libpython34.a
122 Cflags: -I$PREFIX/Python34/include
123 EOF
124
125 # The python34.dll and python34.zip files will be shipped in the NSIS
126 # Windows installers (required for protocol decoding to work).
127 # The file python34.dll (NOT the same as python3.dll) is copied from an
128 # installed Python 3.4.4 (see above) from c:\Windows\system32\python34.dll.
129 # The file python34.zip contains all files from the 'DLLs', 'Lib', and 'libs'
130 # subdirectories from an installed Python on Windows (c:\python34), i.e. some
131 # libraries and all Python stdlib modules.
132 $WGET http://www.sigrok.org/tmp/python34_$TARGET.dll -O $PREFIX/python34.dll
133 $WGET http://www.sigrok.org/tmp/python34_$TARGET.zip -O $PREFIX/python34.zip
134
135 # In order to link against Python we need libpython34.a.
136 # The upstream Python 32bit installer ships this, the x86_64 installer
137 # doesn't. Thus, we generate the file manually here.
138 if [ $TARGET = "x86_64" ]; then
139         cp $PREFIX/python34.dll .
140         $MXE/usr/$TARGET-w64-mingw32.static.posix/bin/gendef python34.dll
141         $MXE/usr/bin/$TARGET-w64-mingw32.static.posix-dlltool \
142                 --dllname python34.dll --def python34.def \
143                 --output-lib libpython34.a
144         mv -f libpython34.a $PREFIX/Python34/libs
145         rm -f python34.dll
146 fi
147
148 # Zadig (we ship this with frontends for easy driver switching).
149 $WGET http://zadig.akeo.ie/downloads/zadig.exe -O $PREFIX/zadig.exe
150 $WGET http://zadig.akeo.ie/downloads/zadig_xp.exe -O $PREFIX/zadig_xp.exe
151
152 # libusb
153 $GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
154 cd libusb
155 patch -p1 < ../../libusb_raw_io.patch
156 ./bootstrap.sh
157 ./configure $C $L
158 make -j1 $V
159 make install $V
160 cd ..
161
162 # libserialport
163 $GIT_CLONE $REPO_BASE/libserialport
164 cd libserialport
165 ./autogen.sh
166 ./configure $C $L
167 make $PARALLEL $V
168 make install $V
169 cd ..
170
171 # libsigrok
172 $GIT_CLONE $REPO_BASE/libsigrok
173 cd libsigrok
174 ./autogen.sh
175 ./configure $C $L
176 make $PARALLEL $V
177 make install $V
178 cd ..
179
180 # libsigrokdecode
181 $GIT_CLONE $REPO_BASE/libsigrokdecode
182 cd libsigrokdecode
183 ./autogen.sh
184 ./configure $C $L
185 make $PARALLEL $V
186 make install $V
187 cd ..
188
189 # sigrok-firmware
190 $GIT_CLONE $REPO_BASE/sigrok-firmware
191 cd sigrok-firmware
192 ./autogen.sh
193 # Nothing gets cross-compiled here, we just need 'make install' basically.
194 ./configure --prefix=$PREFIX
195 make install $V
196 cd ..
197
198 # sigrok-firmware-fx2lafw
199 $GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
200 cd sigrok-firmware-fx2lafw
201 ./autogen.sh
202 # We're building the fx2lafw firmware on the host, no need to cross-compile.
203 ./configure --prefix=$PREFIX
204 make $PARALLEL $V
205 make install $V
206 cd ..
207
208 # sigrok-dumps
209 $GIT_CLONE $REPO_BASE/sigrok-dumps
210 cd sigrok-dumps
211 make install DESTDIR=$PREFIX/share/sigrok-dumps $V
212 cd ..
213
214 # sigrok-cli
215 $GIT_CLONE $REPO_BASE/sigrok-cli
216 cd sigrok-cli
217 ./autogen.sh
218 ./configure $C
219 make $PARALLEL $V
220 make install $V
221 makensis contrib/sigrok-cli_cross.nsi
222 cd ..
223
224 # PulseView
225 $GIT_CLONE $REPO_BASE/pulseview
226 cd pulseview
227 cp ../../FileAssociation.nsh contrib
228 $CMAKE \
229         -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
230         -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
231         -DDISABLE_WERROR=y \
232         -DENABLE_TESTS=y \
233         .
234 make $PARALLEL $V
235 if [ $DEBUG = 1 ]; then
236         make install $V
237 else
238         make install/strip $V
239 fi
240 makensis contrib/pulseview_cross.nsi
241 cd ..
242