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