]> sigrok.org Git - sigrok-util.git/blame_incremental - cross-compile/mingw/sigrok-cross-mingw
sigrok-fwextract-kingst-la2016: concentrate RCC flags in one spot
[sigrok-util.git] / cross-compile / mingw / sigrok-cross-mingw
... / ...
CommitLineData
1#!/bin/sh
2##
3## This file is part of the sigrok-util project.
4##
5## Copyright (C) 2013-2020 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
21set -e
22
23# Build target: "i686" (32bit) or "x86_64" (64bit).
24TARGET="i686"
25
26# The path where your MXE directory is located.
27MXE=$HOME/mxe-git
28
29# The base path prefix where the cross-compiled packages will be installed.
30PREFIXBASE=$HOME/sr_mingw
31
32# The base path prefix where to download files to and where to build packages.
33BUILDBASE=./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.
39PARALLEL="-j 2"
40
41# Edit this to enable/disable debug builds.
42DEBUG=0
43
44# Optionally show some progress as the script executes.
45# ECHO=true
46ECHO=echo
47
48# You usually don't need to change anything below this line.
49
50# -----------------------------------------------------------------------------
51
52$ECHO "setting up fetch variables ..."
53
54WGET="wget -c --quiet"
55GIT_CLONE="git clone --depth=1"
56
57REPO_BASE="git://sigrok.org"
58
59# Construct the build and install directory pathnames.
60if [ $TARGET = "i686" ]; then
61 SUFFIX="32"
62else
63 SUFFIX="64"
64fi
65if [ $DEBUG = 1 ]; then
66 # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
67 BUILD_TYPE="Debug"
68 PREFIX=$PREFIXBASE"_debug_"$SUFFIX
69 BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
70else
71 BUILD_TYPE="Release"
72 PREFIX=$PREFIXBASE"_release_"$SUFFIX
73 BUILDDIR=$BUILDBASE"_release_"$SUFFIX
74fi
75
76# -----------------------------------------------------------------------------
77
78$ECHO "setting up toolchain variables ..."
79
80# We need to find tools in the toolchain.
81export PATH=$MXE/usr/bin:$PATH
82
83TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
84
85CMAKE="$TOOLCHAIN_TRIPLET-cmake"
86
87P="$PREFIX/lib/pkgconfig"
88P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
89C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
90L="--disable-shared --enable-static"
91
92if [ $TARGET = "i686" ]; then
93 export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
94else
95 export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
96fi
97
98# Remove build directory contents (if any) and create a new build dir.
99$ECHO "starting new build directory: $BUILDDIR"
100rm -rf $BUILDDIR
101mkdir $BUILDDIR
102cd $BUILDDIR
103
104# -----------------------------------------------------------------------------
105
106mkdir -p $PREFIX
107
108$ECHO "preparing Python dependency ..."
109
110# This is a HACK which temporarily unbreaks Windows CI builds.
111# TODO Remove this line as well as $WGET_SR references below
112# when the Python34 download works again.
113WGET_SR="$WGET --no-check-certificate"
114
115# Cross-compiling Python is highly non-trivial, so we avoid it for now.
116# The download below is a repackaged tarball of the official Python 3.4.4 MSI
117# installer for Windows:
118# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi
119# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.amd64.msi
120# The MSI file has been installed on a Windows box and then c:\Python34\libs
121# and c:\Python34\include have been stored in the Python34_*.tar.gz tarball.
122$WGET_SR http://www.sigrok.org/tmp/Python34_$TARGET.tar.gz -O $PREFIX/Python34.tar.gz
123tar xzf $PREFIX/Python34.tar.gz -C $PREFIX
124
125# Fix for bug #1195.
126if [ $TARGET = "x86_64" ]; then
127 patch -p1 $PREFIX/Python34/include/pyconfig.h < ../pyconfig.patch
128fi
129
130# Create a dummy python3.pc file so that pkg-config finds Python 3.
131mkdir -p $PREFIX/lib/pkgconfig
132cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
133prefix=$PREFIX
134exec_prefix=\${prefix}
135libdir=\${exec_prefix}/lib
136includedir=\${prefix}/include
137Name: Python
138Description: Python library
139Version: 3.4
140Libs: $PREFIX/Python34/libs/libpython34.a
141Cflags: -I$PREFIX/Python34/include
142EOF
143
144# The python34.dll and python34.zip files will be shipped in the NSIS
145# Windows installers (required for protocol decoding to work).
146# The file python34.dll (NOT the same as python3.dll) is copied from an
147# installed Python 3.4.4 (see above) from c:\Windows\system32\python34.dll.
148# The file python34.zip contains all files from the 'DLLs', 'Lib', and 'libs'
149# subdirectories from an installed Python on Windows (c:\python34), i.e. some
150# libraries and all Python stdlib modules.
151$WGET_SR http://www.sigrok.org/tmp/python34_$TARGET.dll -O $PREFIX/python34.dll
152$WGET_SR http://www.sigrok.org/tmp/python34_$TARGET.zip -O $PREFIX/python34.zip
153
154# In order to link against Python we need libpython34.a.
155# The upstream Python 32bit installer ships this, the x86_64 installer
156# doesn't. Thus, we generate the file manually here.
157if [ $TARGET = "x86_64" ]; then
158 cp $PREFIX/python34.dll .
159 $MXE/usr/$TARGET-w64-mingw32.static.posix/bin/gendef python34.dll
160 $MXE/usr/bin/$TARGET-w64-mingw32.static.posix-dlltool \
161 --dllname python34.dll --def python34.def \
162 --output-lib libpython34.a
163 mv -f libpython34.a $PREFIX/Python34/libs
164 rm -f python34.dll
165fi
166
167# We need to include the *.pyd files from python34.zip into the installers,
168# otherwise importing certain modules (e.g. ctypes) won't work (bug #1409).
169unzip -q $PREFIX/python34.zip *.pyd -d $PREFIX
170
171# Zadig (we ship this with frontends for easy driver switching).
172$ECHO "fetching zadig ..."
173$WGET https://github.com/pbatard/libwdi/releases/download/b721/zadig-2.4.exe -O $PREFIX/zadig.exe
174$WGET https://github.com/pbatard/libwdi/releases/download/v1.2.5/zadig_xp-2.2.exe -O $PREFIX/zadig_xp.exe
175
176# libserialport
177$ECHO "component libserialport ..."
178$GIT_CLONE $REPO_BASE/libserialport
179cd libserialport
180./autogen.sh
181./configure $C $L
182make $PARALLEL $V
183make install $V
184cd ..
185
186# libsigrok
187$ECHO "component libsigrok ..."
188$GIT_CLONE $REPO_BASE/libsigrok
189cd libsigrok
190./autogen.sh
191./configure $C $L
192make $PARALLEL $V
193make install $V
194cd ..
195
196# libsigrokdecode
197$ECHO "component libsigrokdecode ..."
198$GIT_CLONE $REPO_BASE/libsigrokdecode
199cd libsigrokdecode
200./autogen.sh
201./configure $C $L
202make $PARALLEL $V
203make install $V
204cd ..
205
206# sigrok-firmware
207$ECHO "component sigrok-firmware ..."
208$GIT_CLONE $REPO_BASE/sigrok-firmware
209cd sigrok-firmware
210./autogen.sh
211# Nothing gets cross-compiled here, we just need 'make install' basically.
212./configure --prefix=$PREFIX
213make install $V
214cd ..
215
216# sigrok-firmware-fx2lafw
217$ECHO "component sigrok-firmware-fx2lafw ..."
218$GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
219cd sigrok-firmware-fx2lafw
220./autogen.sh
221# We're building the fx2lafw firmware on the host, no need to cross-compile.
222./configure --prefix=$PREFIX
223make $PARALLEL $V
224make install $V
225cd ..
226
227# sigrok-dumps
228$ECHO "component sigrok-dumps ..."
229$GIT_CLONE $REPO_BASE/sigrok-dumps
230cd sigrok-dumps
231make install PREFIX=$PREFIX $V
232cd ..
233
234# sigrok-cli
235$ECHO "component sigrok-cli ..."
236$GIT_CLONE $REPO_BASE/sigrok-cli
237cd sigrok-cli
238./autogen.sh
239./configure $C
240make $PARALLEL $V
241make install $V
242if [ $TARGET = "i686" ]; then
243 makensis contrib/sigrok-cli_cross.nsi
244else
245 makensis -DPE64=1 contrib/sigrok-cli_cross.nsi
246fi
247cd ..
248
249# PulseView
250$ECHO "component pulseview ..."
251$GIT_CLONE $REPO_BASE/pulseview
252cd pulseview
253patch -p1 < ../../pulseview-boost-numeric-literals.patch
254patch -p1 < ../../pulseview-manual-pdf-hack.patch
255cp ../../FileAssociation.nsh contrib
256$CMAKE \
257 -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
258 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
259 -DDISABLE_WERROR=y \
260 -DENABLE_TESTS=y \
261 .
262make $PARALLEL $V
263make manual
264if [ $DEBUG = 1 ]; then
265 make install $V
266else
267 make install/strip $V
268fi
269
270$ECHO "creating NSIS installer ..."
271if [ $TARGET = "i686" ]; then
272 makensis contrib/pulseview_cross.nsi
273else
274 makensis -DPE64=1 contrib/pulseview_cross.nsi
275fi
276cd ..
277
278$ECHO "cross compile script done."