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