]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-native-appimage: Add Python 3 files.
[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##
ada172f4 5## Copyright (C) 2013-2017 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
e5a835ea
UH
53REPO_BASE="git://sigrok.org"
54
50d4aefd
UH
55# -----------------------------------------------------------------------------
56
b73b66ae
UH
57# We need to find tools in the toolchain.
58export PATH=$MXE/usr/bin:$PATH
91d4c754 59
01b17442 60TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
2c1ce0e4 61
aaafb7ec
UH
62CMAKE="$TOOLCHAIN_TRIPLET-cmake"
63
91d4c754 64P="$PREFIX/lib/pkgconfig"
2c1ce0e4 65P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
4e8697df 66C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
91d4c754
UH
67L="--disable-shared --enable-static"
68
533e3e6c 69if [ $TARGET = "i686" ]; then
01b17442 70 export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
749d4097 71else
01b17442 72 export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
749d4097 73fi
ccf354f1 74
5fed26f2
UH
75if [ $DEBUG = 1 ]; then
76 # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
77 CM="$CM -DCMAKE_BUILD_TYPE=Debug"
78fi
79
91d4c754
UH
80# Remove build directory contents (if any) and create a new build dir.
81rm -rf $BUILDDIR
82mkdir $BUILDDIR
83cd $BUILDDIR
84
85# -----------------------------------------------------------------------------
86
5f44a368
UH
87mkdir -p $PREFIX
88
91d4c754 89# Cross-compiling Python is highly non-trivial, so we avoid it for now.
1e3d3d6a 90# The download below is a repackaged tarball of the official Python 3.4.4 MSI
749d4097 91# installer for Windows:
1e3d3d6a
UH
92# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi
93# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.amd64.msi
94# The MSI file has been installed on a Windows box and then c:\Python34\libs
95# and c:\Python34\include have been stored in the Python34_*.tar.gz tarball.
96$WGET http://www.sigrok.org/tmp/Python34_$TARGET.tar.gz -O $PREFIX/Python34.tar.gz
97tar xzf $PREFIX/Python34.tar.gz -C $PREFIX
91d4c754 98
cd6c7174
UH
99# Create a dummy python3.pc file so that pkg-config finds Python 3.
100mkdir -p $PREFIX/lib/pkgconfig
101cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
102prefix=$PREFIX
103exec_prefix=\${prefix}
104libdir=\${exec_prefix}/lib
105includedir=\${prefix}/include
106Name: Python
107Description: Python library
1e3d3d6a
UH
108Version: 3.4
109Libs: $PREFIX/Python34/libs/libpython34.a
110Cflags: -I$PREFIX/Python34/include
91d4c754 111EOF
91d4c754 112
1e3d3d6a 113# The python34.dll and python34.zip files will be shipped in the NSIS
5f44a368 114# Windows installers (required for protocol decoding to work).
1e3d3d6a
UH
115# The file python34.dll (NOT the same as python3.dll) is copied from an
116# installed Python 3.4.4 (see above) from c:\Windows\system32\python34.dll.
117# The file python34.zip contains all files from the 'DLLs', 'Lib', and 'libs'
118# subdirectories from an installed Python on Windows (c:\python34), i.e. some
119# libraries and all Python stdlib modules.
120$WGET http://www.sigrok.org/tmp/python34_$TARGET.dll -O $PREFIX/python34.dll
121$WGET http://www.sigrok.org/tmp/python34_$TARGET.zip -O $PREFIX/python34.zip
6ba97136 122
37d3fad3 123# Zadig (we ship this with frontends for easy driver switching).
fd214a32
UH
124$WGET http://zadig.akeo.ie/downloads/zadig.exe -O $PREFIX/zadig.exe
125$WGET http://zadig.akeo.ie/downloads/zadig_xp.exe -O $PREFIX/zadig_xp.exe
37d3fad3 126
e4b264d1
UH
127# libusb
128$GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
129cd libusb
38599f9c 130patch -p1 < ../../libusb_raw_io.patch
3dcba30d
UH
131./bootstrap.sh
132./configure $C $L
e4b264d1
UH
133make -j1 $V
134make install $V
135cd ..
136
43ffde97 137# libserialport
e5a835ea 138$GIT_CLONE $REPO_BASE/libserialport
43ffde97
UH
139cd libserialport
140./autogen.sh
9df9ed3a 141./configure $C $L
1f1780d8
UH
142make $PARALLEL $V
143make install $V
43ffde97
UH
144cd ..
145
91d4c754 146# libsigrok
e5a835ea 147$GIT_CLONE $REPO_BASE/libsigrok
91d4c754
UH
148cd libsigrok
149./autogen.sh
ccf354f1 150./configure $C $L
1f1780d8
UH
151make $PARALLEL $V
152make install $V
91d4c754
UH
153cd ..
154
155# libsigrokdecode
e5a835ea 156$GIT_CLONE $REPO_BASE/libsigrokdecode
91d4c754
UH
157cd libsigrokdecode
158./autogen.sh
ccf354f1 159./configure $C $L
1f1780d8
UH
160make $PARALLEL $V
161make install $V
91d4c754
UH
162cd ..
163
885dc089 164# sigrok-firmware
e5a835ea 165$GIT_CLONE $REPO_BASE/sigrok-firmware
885dc089
UH
166cd sigrok-firmware
167./autogen.sh
168# Nothing gets cross-compiled here, we just need 'make install' basically.
169./configure --prefix=$PREFIX
1f1780d8 170make install $V
885dc089
UH
171cd ..
172
173# sigrok-firmware-fx2lafw
e5a835ea 174$GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
885dc089
UH
175cd sigrok-firmware-fx2lafw
176./autogen.sh
177# We're building the fx2lafw firmware on the host, no need to cross-compile.
178./configure --prefix=$PREFIX
1f1780d8
UH
179make $PARALLEL $V
180make install $V
885dc089
UH
181cd ..
182
9de2e03d 183# sigrok-dumps
e5a835ea 184$GIT_CLONE $REPO_BASE/sigrok-dumps
9de2e03d 185cd sigrok-dumps
1f1780d8 186make install DESTDIR=$PREFIX/share/sigrok-dumps $V
9de2e03d
UH
187cd ..
188
91d4c754 189# sigrok-cli
e5a835ea 190$GIT_CLONE $REPO_BASE/sigrok-cli
91d4c754
UH
191cd sigrok-cli
192./autogen.sh
ccf354f1 193./configure $C
1f1780d8
UH
194make $PARALLEL $V
195make install $V
57d08419 196makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
91d4c754
UH
197cd ..
198
91d4c754 199# PulseView
e5a835ea 200$GIT_CLONE $REPO_BASE/pulseview
91d4c754 201cd pulseview
5fed26f2
UH
202if [ $DEBUG = 1 ]; then
203 # Allow a "DOS box" to open on Windows, it'll contain logging output.
204 patch -p1 < ../../pv_mwindows.patch
205fi
aaafb7ec 206$CMAKE -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y .
1f1780d8 207make $PARALLEL $V
5fed26f2
UH
208if [ $DEBUG = 1 ]; then
209 make install $V
210else
211 make install/strip $V
212fi
57d08419 213makensis -DHOME=$HOME contrib/pulseview_cross.nsi
91d4c754
UH
214cd ..
215