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