]> sigrok.org Git - sigrok-util.git/blame_incremental - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-android: Bump VER_SIGROK_FIRMWARE_FX2LAFW to 0.1.6.
[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-2018 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# You usually don't need to change anything below this line.
45
46# -----------------------------------------------------------------------------
47
48WGET="wget -c --quiet"
49GIT_CLONE="git clone --depth=1"
50
51REPO_BASE="git://sigrok.org"
52
53# Construct the build and install directory pathnames.
54if [ $TARGET = "i686" ]; then
55 SUFFIX="32"
56else
57 SUFFIX="64"
58fi
59if [ $DEBUG = 1 ]; then
60 # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
61 BUILD_TYPE="Debug"
62 PREFIX=$PREFIXBASE"_debug_"$SUFFIX
63 BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
64else
65 BUILD_TYPE="Release"
66 PREFIX=$PREFIXBASE"_release_"$SUFFIX
67 BUILDDIR=$BUILDBASE"_release_"$SUFFIX
68fi
69
70# -----------------------------------------------------------------------------
71
72# We need to find tools in the toolchain.
73export PATH=$MXE/usr/bin:$PATH
74
75TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
76
77CMAKE="$TOOLCHAIN_TRIPLET-cmake"
78
79P="$PREFIX/lib/pkgconfig"
80P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
81C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX CPPFLAGS=-D__printf__=__gnu_printf__"
82L="--disable-shared --enable-static"
83
84if [ $TARGET = "i686" ]; then
85 export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
86else
87 export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
88fi
89
90# Remove build directory contents (if any) and create a new build dir.
91rm -rf $BUILDDIR
92mkdir $BUILDDIR
93cd $BUILDDIR
94
95# -----------------------------------------------------------------------------
96
97mkdir -p $PREFIX
98
99# Cross-compiling Python is highly non-trivial, so we avoid it for now.
100# The download below is a repackaged tarball of the official Python 3.4.4 MSI
101# installer for Windows:
102# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi
103# - https://www.python.org/ftp/python/3.4.4/python-3.4.4.amd64.msi
104# The MSI file has been installed on a Windows box and then c:\Python34\libs
105# and c:\Python34\include have been stored in the Python34_*.tar.gz tarball.
106$WGET http://www.sigrok.org/tmp/Python34_$TARGET.tar.gz -O $PREFIX/Python34.tar.gz
107tar xzf $PREFIX/Python34.tar.gz -C $PREFIX
108
109# Create a dummy python3.pc file so that pkg-config finds Python 3.
110mkdir -p $PREFIX/lib/pkgconfig
111cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
112prefix=$PREFIX
113exec_prefix=\${prefix}
114libdir=\${exec_prefix}/lib
115includedir=\${prefix}/include
116Name: Python
117Description: Python library
118Version: 3.4
119Libs: $PREFIX/Python34/libs/libpython34.a
120Cflags: -I$PREFIX/Python34/include
121EOF
122
123# The python34.dll and python34.zip files will be shipped in the NSIS
124# Windows installers (required for protocol decoding to work).
125# The file python34.dll (NOT the same as python3.dll) is copied from an
126# installed Python 3.4.4 (see above) from c:\Windows\system32\python34.dll.
127# The file python34.zip contains all files from the 'DLLs', 'Lib', and 'libs'
128# subdirectories from an installed Python on Windows (c:\python34), i.e. some
129# libraries and all Python stdlib modules.
130$WGET http://www.sigrok.org/tmp/python34_$TARGET.dll -O $PREFIX/python34.dll
131$WGET http://www.sigrok.org/tmp/python34_$TARGET.zip -O $PREFIX/python34.zip
132
133# In order to link against Python we need libpython34.a.
134# The upstream Python 32bit installer ships this, the x86_64 installer
135# doesn't. Thus, we generate the file manually here.
136if [ $TARGET = "x86_64" ]; then
137 cp $PREFIX/python34.dll .
138 $MXE/usr/$TARGET-w64-mingw32.static.posix/bin/gendef python34.dll
139 $MXE/usr/bin/$TARGET-w64-mingw32.static.posix-dlltool \
140 --dllname python34.dll --def python34.def \
141 --output-lib libpython34.a
142 mv -f libpython34.a $PREFIX/Python34/libs
143 rm -f python34.dll
144fi
145
146# Zadig (we ship this with frontends for easy driver switching).
147$WGET http://zadig.akeo.ie/downloads/zadig.exe -O $PREFIX/zadig.exe
148$WGET http://zadig.akeo.ie/downloads/zadig_xp.exe -O $PREFIX/zadig_xp.exe
149
150# libusb
151$GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
152cd libusb
153patch -p1 < ../../libusb_raw_io.patch
154./bootstrap.sh
155./configure $C $L
156make -j1 $V
157make install $V
158cd ..
159
160# libserialport
161$GIT_CLONE $REPO_BASE/libserialport
162cd libserialport
163./autogen.sh
164./configure $C $L
165make $PARALLEL $V
166make install $V
167cd ..
168
169# libsigrok
170$GIT_CLONE $REPO_BASE/libsigrok
171cd libsigrok
172./autogen.sh
173./configure $C $L
174make $PARALLEL $V
175make install $V
176cd ..
177
178# libsigrokdecode
179$GIT_CLONE $REPO_BASE/libsigrokdecode
180cd libsigrokdecode
181./autogen.sh
182./configure $C $L
183make $PARALLEL $V
184make install $V
185cd ..
186
187# sigrok-firmware
188$GIT_CLONE $REPO_BASE/sigrok-firmware
189cd sigrok-firmware
190./autogen.sh
191# Nothing gets cross-compiled here, we just need 'make install' basically.
192./configure --prefix=$PREFIX
193make install $V
194cd ..
195
196# sigrok-firmware-fx2lafw
197$GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
198cd sigrok-firmware-fx2lafw
199./autogen.sh
200# We're building the fx2lafw firmware on the host, no need to cross-compile.
201./configure --prefix=$PREFIX
202make $PARALLEL $V
203make install $V
204cd ..
205
206# sigrok-dumps
207$GIT_CLONE $REPO_BASE/sigrok-dumps
208cd sigrok-dumps
209make install DESTDIR=$PREFIX/share/sigrok-dumps $V
210cd ..
211
212# sigrok-cli
213$GIT_CLONE $REPO_BASE/sigrok-cli
214cd sigrok-cli
215./autogen.sh
216./configure $C
217make $PARALLEL $V
218make install $V
219makensis contrib/sigrok-cli_cross.nsi
220cd ..
221
222# PulseView
223$GIT_CLONE $REPO_BASE/pulseview
224cd pulseview
225cp ../../FileAssociation.nsh contrib
226$CMAKE \
227 -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
228 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
229 -DDISABLE_WERROR=y \
230 -DENABLE_TESTS=y \
231 .
232make $PARALLEL $V
233if [ $DEBUG = 1 ]; then
234 make install $V
235else
236 make install/strip $V
237fi
238makensis contrib/pulseview_cross.nsi
239cd ..
240