]> sigrok.org Git - sigrok-util.git/blob - cross-compile/mingw/sigrok-cross-mingw
86e4486646a2950dfa2bf45b9b2231cd1204e138
[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-2016 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 control verbose build output.
37 # V="V=1 VERBOSE=1"
38
39 # Edit this to enable/disable/modify parallel compiles.
40 PARALLEL="-j 2"
41
42 # Edit this to enable/disable debug builds.
43 DEBUG=0
44
45 # You usually don't need to change anything below this line.
46
47 # -----------------------------------------------------------------------------
48
49 SF_MIRROR=switch.dl.sourceforge.net
50
51 WGET="wget -c --quiet"
52 GIT_CLONE="git clone --depth=1"
53
54 # -----------------------------------------------------------------------------
55
56 # We need to find tools in the toolchain.
57 export PATH=$MXE/usr/bin:$PATH
58
59 TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
60
61 P="$PREFIX/lib/pkgconfig"
62 P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
63 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
64 CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/$TOOLCHAIN_TRIPLET/share/cmake/mxe-conf.cmake"
65 L="--disable-shared --enable-static"
66
67 if [ $TARGET = "i686" ]; then
68         export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
69 else
70         export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
71 fi
72
73 if [ $DEBUG = 1 ]; then
74         # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
75         CM="$CM -DCMAKE_BUILD_TYPE=Debug"
76 fi
77
78 # Remove build directory contents (if any) and create a new build dir.
79 rm -rf $BUILDDIR
80 mkdir $BUILDDIR
81 cd $BUILDDIR
82
83 # -----------------------------------------------------------------------------
84
85 mkdir -p $PREFIX
86
87 # Cross-compiling Python is highly non-trivial, so we avoid it for now.
88 # The download below is a repackaged tarball of the official Python 3.2.3 MSI
89 # installer for Windows:
90 #   - https://www.python.org/ftp/python/3.2.3/python-3.2.3.msi
91 #   - https://www.python.org/ftp/python/3.2.3/python-3.2.3.amd64.msi
92 # The MSI file has been installed on a Windows box and then c:\Python32\libs
93 # and c:\Python32\include have been stored in the Python32_*.tar.gz tarball.
94 $WGET http://www.sigrok.org/tmp/Python32_$TARGET.tar.gz -O $PREFIX/Python32.tar.gz
95 tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
96
97 # Create a dummy python3.pc file so that pkg-config finds Python 3.
98 mkdir -p $PREFIX/lib/pkgconfig
99 cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF 
100 prefix=$PREFIX
101 exec_prefix=\${prefix}
102 libdir=\${exec_prefix}/lib
103 includedir=\${prefix}/include
104 Name: Python
105 Description: Python library
106 Version: 3.2
107 Libs: -L$PREFIX/Python32/libs -lpython32
108 Cflags: -I$PREFIX/Python32/include
109 EOF
110
111 # The python32.dll and python32.zip files will be shipped in the NSIS
112 # Windows installers (required for protocol decoding to work).
113 # The file python32.dll (NOT the same as python3.dll) is copied from an
114 # installed Python 3.2.3 (see above) from c:\Windows\system32\python32.dll.
115 # The file python32.zip contains all files from the 'DLLs', 'Lib', and 'libs'
116 # subdirectories from an installed Python on Windows (c:\python32), i.e. some
117 # libraries and all Python stdlib modules.
118 $WGET http://www.sigrok.org/tmp/python32_$TARGET.dll -O $PREFIX/python32.dll
119 $WGET http://www.sigrok.org/tmp/python32_$TARGET.zip -O $PREFIX/python32.zip
120
121 # Zadig (we ship this with frontends for easy driver switching).
122 $WGET http://zadig.akeo.ie/downloads/zadig.exe -O $PREFIX/zadig.exe
123 $WGET http://zadig.akeo.ie/downloads/zadig_xp.exe -O $PREFIX/zadig_xp.exe
124
125 # libusb
126 $GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
127 cd libusb
128 patch -p1 < ../../libusb_raw_io.patch
129 ./bootstrap.sh
130 ./configure $C $L
131 make -j1 $V
132 make install $V
133 cd ..
134
135 # libserialport
136 $GIT_CLONE git://sigrok.org/libserialport
137 cd libserialport
138 ./autogen.sh
139 ./configure $C $L
140 make $PARALLEL $V
141 make install $V
142 cd ..
143
144 # libsigrok
145 $GIT_CLONE git://sigrok.org/libsigrok
146 cd libsigrok
147 ./autogen.sh
148 ./configure $C $L
149 make $PARALLEL $V
150 make install $V
151 cd ..
152
153 # libsigrokdecode
154 $GIT_CLONE git://sigrok.org/libsigrokdecode
155 cd libsigrokdecode
156 ./autogen.sh
157 ./configure $C $L
158 make $PARALLEL $V
159 make install $V
160 cd ..
161
162 # sigrok-firmware
163 $GIT_CLONE git://sigrok.org/sigrok-firmware
164 cd sigrok-firmware
165 ./autogen.sh
166 # Nothing gets cross-compiled here, we just need 'make install' basically.
167 ./configure --prefix=$PREFIX
168 make install $V
169 cd ..
170
171 # sigrok-firmware-fx2lafw
172 $GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
173 cd sigrok-firmware-fx2lafw
174 ./autogen.sh
175 # We're building the fx2lafw firmware on the host, no need to cross-compile.
176 ./configure --prefix=$PREFIX
177 make $PARALLEL $V
178 make install $V
179 cd ..
180
181 # sigrok-dumps
182 $GIT_CLONE git://sigrok.org/sigrok-dumps
183 cd sigrok-dumps
184 make install DESTDIR=$PREFIX/share/sigrok-dumps $V
185 cd ..
186
187 # sigrok-cli
188 $GIT_CLONE git://sigrok.org/sigrok-cli
189 cd sigrok-cli
190 ./autogen.sh
191 ./configure $C
192 make $PARALLEL $V
193 make install $V
194 makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
195 cd ..
196
197 # PulseView
198 $GIT_CLONE git://sigrok.org/pulseview
199 cd pulseview
200 if [ $DEBUG = 1 ]; then
201         # Allow a "DOS box" to open on Windows, it'll contain logging output.
202         patch -p1 < ../../pv_mwindows.patch
203 fi
204 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y .
205 exit
206 make $PARALLEL $V
207 if [ $DEBUG = 1 ]; then
208         make install $V
209 else
210         make install/strip $V
211 fi
212 makensis -DHOME=$HOME contrib/pulseview_cross.nsi
213 cd ..
214