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