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