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