]> sigrok.org Git - sigrok-util.git/blob - cross-compile/mingw/sigrok-cross-mingw
0989a5f6829f4bd12f1205484cc2435ab563e3cd
[sigrok-util.git] / cross-compile / mingw / sigrok-cross-mingw
1 #!/bin/bash
2 ##
3 ## This file is part of the sigrok-util project.
4 ##
5 ## Copyright (C) 2013-2014 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, write to the Free Software
19 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20 ##
21
22 set -e
23
24 # Build target: "i686" (32bit) or "x86_64" (64bit).
25 TARGET="i686"
26
27 # The path where your MXE directory is located.
28 MXE=$HOME/mxe-git
29
30 # The path where the cross-compiled packages will be installed.
31 PREFIX=$HOME/sr_mingw
32
33 # The path where to download files to and where to build packages.
34 BUILDDIR=./build
35
36 # Edit this to enable/disable/modify parallel compiles.
37 PARALLEL="-j 2"
38
39 # You usually don't need to change anything below this line.
40
41 # -----------------------------------------------------------------------------
42
43 VER_LIBUSB_WIN32=1.2.6.0
44 VER_ZADIG=v2.0.1.160
45
46 SF_MIRROR=switch.dl.sourceforge.net
47
48 WGET="wget --quiet"
49 GIT_CLONE="git clone --depth=1"
50
51 # -----------------------------------------------------------------------------
52
53 # We need to find tools in the toolchain.
54 export PATH=$MXE/usr/bin:$PATH
55
56 TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static"
57
58 P="$PREFIX/lib/pkgconfig"
59 P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
60 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
61 CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/$TOOLCHAIN_TRIPLET/share/cmake/mxe-conf.cmake"
62 L="--disable-shared --enable-static"
63 DDK="$MXE/usr/$TOOLCHAIN_TRIPLET/include/ddk"
64
65 if [ $TARGET == "i686" ]; then
66         export PKG_CONFIG_PATH_i686_w64_mingw32_static="$P:$P2"
67 else
68         export PKG_CONFIG_PATH_x86_64_w64_mingw32_static="$P:$P2"
69 fi
70
71 # Remove build directory contents (if any) and create a new build dir.
72 rm -rf $BUILDDIR
73 mkdir $BUILDDIR
74 cd $BUILDDIR
75
76 # -----------------------------------------------------------------------------
77
78 mkdir -p $PREFIX
79
80 # Cross-compiling Python is highly non-trivial, so we avoid it for now.
81 # The download below is a repackaged tarball of the official Python 3.2.3 MSI
82 # installer for Windows:
83 #   - https://www.python.org/ftp/python/3.2.3/python-3.2.3.msi
84 #   - https://www.python.org/ftp/python/3.2.3/python-3.2.3.amd64.msi
85 # The MSI file has been installed on a Windows box and then c:\Python32\libs
86 # and c:\Python32\include have been stored in the Python32_*.tar.gz tarball.
87 $WGET http://www.sigrok.org/tmp/Python32_$TARGET.tar.gz -O $PREFIX/Python32.tar.gz
88 tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
89
90 # Create a dummy python3.pc file so that pkg-config finds Python 3.
91 mkdir -p $PREFIX/lib/pkgconfig
92 cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF 
93 prefix=$PREFIX
94 exec_prefix=\${prefix}
95 libdir=\${exec_prefix}/lib
96 includedir=\${prefix}/include
97 Name: Python
98 Description: Python library
99 Version: 3.2
100 Libs: -L$PREFIX/Python32/libs -lpython32
101 Cflags: -I$PREFIX/Python32/include
102 EOF
103
104 # The python32.dll and python32.zip files will be shipped in the NSIS
105 # Windows installers (required for protocol decoding to work).
106 # The file python32.dll (NOT the same as python3.dll) is copied from an
107 # installed Python 3.2.3 (see above) from c:\Windows\system32\python32.dll.
108 # The file python32.zip contains all files from the 'DLLs', 'Lib', and 'libs'
109 # subdirectories from an installed Python on Windows (c:\python32), i.e. some
110 # libraries and all Python stdlib modules.
111 $WGET http://www.sigrok.org/tmp/python32_$TARGET.dll -O $PREFIX/python32.dll
112 $WGET http://www.sigrok.org/tmp/python32_$TARGET.zip -O $PREFIX/python32.zip
113
114 # libusb0.dll (needs to be shipped with frontends)
115 $WGET -c http://$SF_MIRROR/project/libusb-win32/libusb-win32-releases/$VER_LIBUSB_WIN32/libusb-win32-bin-$VER_LIBUSB_WIN32.zip
116 unzip -q libusb-win32-bin-$VER_LIBUSB_WIN32.zip
117 cp -f libusb-win32-bin-$VER_LIBUSB_WIN32/bin/x86/libusb0_x86.dll $PREFIX/libusb0.dll
118
119 # Zadig (we ship this with frontends for easy driver switching).
120 $WGET -c http://$SF_MIRROR/project/libwdi/zadig/zadig_$VER_ZADIG.7z
121 $WGET -c http://$SF_MIRROR/project/libwdi/zadig/zadig_xp_$VER_ZADIG.7z
122 7zr e zadig_$VER_ZADIG.7z
123 7zr e zadig_xp_$VER_ZADIG.7z
124 cp -f zadig.exe zadig_xp.exe $PREFIX
125
126 # libserialport
127 $GIT_CLONE git://sigrok.org/libserialport
128 cd libserialport
129 ./autogen.sh
130 CFLAGS="-I$DDK" ./configure $C $L
131 make $PARALLEL V=1
132 make install
133 cd ..
134
135 # libsigrok
136 $GIT_CLONE git://sigrok.org/libsigrok
137 cd libsigrok
138 patch -p1 < ../../libsigrok_firmwaredir.patch
139 ./autogen.sh
140 ./configure $C $L
141 make $PARALLEL V=1
142 make install
143 cd ..
144
145 # libsigrokdecode
146 $GIT_CLONE git://sigrok.org/libsigrokdecode
147 cd libsigrokdecode
148 ./autogen.sh
149 patch -p1 < ../../srd_decodersdir.patch
150 ./configure $C $L
151 make $PARALLEL V=1
152 make install
153 cd ..
154
155 # sigrok-firmware
156 $GIT_CLONE git://sigrok.org/sigrok-firmware
157 cd sigrok-firmware
158 ./autogen.sh
159 # Nothing gets cross-compiled here, we just need 'make install' basically.
160 ./configure --prefix=$PREFIX
161 make install
162 cd ..
163
164 # sigrok-firmware-fx2lafw
165 $GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
166 cd sigrok-firmware-fx2lafw
167 ./autogen.sh
168 # We're building the fx2lafw firmware on the host, no need to cross-compile.
169 ./configure --prefix=$PREFIX
170 make $PARALLEL V=1
171 make install
172 cd ..
173
174 # sigrok-dumps
175 $GIT_CLONE git://sigrok.org/sigrok-dumps
176 cd sigrok-dumps
177 make install DESTDIR=$PREFIX/share/sigrok-dumps
178 cd ..
179
180 # sigrok-cli
181 $GIT_CLONE git://sigrok.org/sigrok-cli
182 cd sigrok-cli
183 ./autogen.sh
184 ./configure $C
185 make $PARALLEL V=1
186 make install
187 makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
188 cd ..
189
190 # PulseView
191 $GIT_CLONE git://sigrok.org/pulseview
192 cd pulseview
193 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y .
194 make $PARALLEL VERBOSE=1
195 make install
196 makensis -DHOME=$HOME contrib/pulseview_cross.nsi
197 cd ..
198