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