]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: Use MXE's cmake instead of -DCMAKE_TOOLCHAIN_FILE.
[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##
5fed26f2 5## Copyright (C) 2013-2016 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
29# The path where the cross-compiled packages will be installed.
30PREFIX=$HOME/sr_mingw
31
32# The path where to download files to and where to build packages.
07947dda 33BUILDDIR=./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
91d4c754
UH
44# You usually don't need to change anything below this line.
45
46# -----------------------------------------------------------------------------
47
50d4aefd
UH
48SF_MIRROR=switch.dl.sourceforge.net
49
fd214a32 50WGET="wget -c --quiet"
a51ca6bd 51GIT_CLONE="git clone --depth=1"
b7259b10 52
50d4aefd
UH
53# -----------------------------------------------------------------------------
54
b73b66ae
UH
55# We need to find tools in the toolchain.
56export PATH=$MXE/usr/bin:$PATH
91d4c754 57
01b17442 58TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
2c1ce0e4 59
aaafb7ec
UH
60CMAKE="$TOOLCHAIN_TRIPLET-cmake"
61
91d4c754 62P="$PREFIX/lib/pkgconfig"
2c1ce0e4 63P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
4e8697df 64C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
91d4c754
UH
65L="--disable-shared --enable-static"
66
533e3e6c 67if [ $TARGET = "i686" ]; then
01b17442 68 export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
749d4097 69else
01b17442 70 export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
749d4097 71fi
ccf354f1 72
5fed26f2
UH
73if [ $DEBUG = 1 ]; then
74 # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
75 CM="$CM -DCMAKE_BUILD_TYPE=Debug"
76fi
77
91d4c754
UH
78# Remove build directory contents (if any) and create a new build dir.
79rm -rf $BUILDDIR
80mkdir $BUILDDIR
81cd $BUILDDIR
82
83# -----------------------------------------------------------------------------
84
5f44a368
UH
85mkdir -p $PREFIX
86
91d4c754
UH
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
749d4097
UH
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
5f44a368 92# The MSI file has been installed on a Windows box and then c:\Python32\libs
749d4097
UH
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
91d4c754
UH
95tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
96
cd6c7174
UH
97# Create a dummy python3.pc file so that pkg-config finds Python 3.
98mkdir -p $PREFIX/lib/pkgconfig
99cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
100prefix=$PREFIX
101exec_prefix=\${prefix}
102libdir=\${exec_prefix}/lib
103includedir=\${prefix}/include
104Name: Python
105Description: Python library
106Version: 3.2
107Libs: -L$PREFIX/Python32/libs -lpython32
108Cflags: -I$PREFIX/Python32/include
91d4c754 109EOF
91d4c754 110
5f44a368
UH
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.
749d4097
UH
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
6ba97136 120
37d3fad3 121# Zadig (we ship this with frontends for easy driver switching).
fd214a32
UH
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
37d3fad3 124
e4b264d1
UH
125# libusb
126$GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
127cd libusb
38599f9c 128patch -p1 < ../../libusb_raw_io.patch
3dcba30d
UH
129./bootstrap.sh
130./configure $C $L
e4b264d1
UH
131make -j1 $V
132make install $V
133cd ..
134
43ffde97 135# libserialport
a51ca6bd 136$GIT_CLONE git://sigrok.org/libserialport
43ffde97
UH
137cd libserialport
138./autogen.sh
9df9ed3a 139./configure $C $L
1f1780d8
UH
140make $PARALLEL $V
141make install $V
43ffde97
UH
142cd ..
143
91d4c754 144# libsigrok
a51ca6bd 145$GIT_CLONE git://sigrok.org/libsigrok
91d4c754
UH
146cd libsigrok
147./autogen.sh
ccf354f1 148./configure $C $L
1f1780d8
UH
149make $PARALLEL $V
150make install $V
91d4c754
UH
151cd ..
152
153# libsigrokdecode
a51ca6bd 154$GIT_CLONE git://sigrok.org/libsigrokdecode
91d4c754
UH
155cd libsigrokdecode
156./autogen.sh
ccf354f1 157./configure $C $L
1f1780d8
UH
158make $PARALLEL $V
159make install $V
91d4c754
UH
160cd ..
161
885dc089 162# sigrok-firmware
a51ca6bd 163$GIT_CLONE git://sigrok.org/sigrok-firmware
885dc089
UH
164cd sigrok-firmware
165./autogen.sh
166# Nothing gets cross-compiled here, we just need 'make install' basically.
167./configure --prefix=$PREFIX
1f1780d8 168make install $V
885dc089
UH
169cd ..
170
171# sigrok-firmware-fx2lafw
a51ca6bd 172$GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
885dc089
UH
173cd 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
1f1780d8
UH
177make $PARALLEL $V
178make install $V
885dc089
UH
179cd ..
180
9de2e03d 181# sigrok-dumps
a51ca6bd 182$GIT_CLONE git://sigrok.org/sigrok-dumps
9de2e03d 183cd sigrok-dumps
1f1780d8 184make install DESTDIR=$PREFIX/share/sigrok-dumps $V
9de2e03d
UH
185cd ..
186
91d4c754 187# sigrok-cli
a51ca6bd 188$GIT_CLONE git://sigrok.org/sigrok-cli
91d4c754
UH
189cd sigrok-cli
190./autogen.sh
ccf354f1 191./configure $C
1f1780d8
UH
192make $PARALLEL $V
193make install $V
57d08419 194makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
91d4c754
UH
195cd ..
196
91d4c754 197# PulseView
a51ca6bd 198$GIT_CLONE git://sigrok.org/pulseview
91d4c754 199cd pulseview
5fed26f2
UH
200if [ $DEBUG = 1 ]; then
201 # Allow a "DOS box" to open on Windows, it'll contain logging output.
202 patch -p1 < ../../pv_mwindows.patch
203fi
aaafb7ec 204$CMAKE -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y .
1f1780d8 205make $PARALLEL $V
5fed26f2
UH
206if [ $DEBUG = 1 ]; then
207 make install $V
208else
209 make install/strip $V
210fi
57d08419 211makensis -DHOME=$HOME contrib/pulseview_cross.nsi
91d4c754
UH
212cd ..
213