]> sigrok.org Git - sigrok-util.git/blame_incremental - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: i686-pc-mingw32.static -> i686-w64-mingw32.static.
[sigrok-util.git] / cross-compile / mingw / sigrok-cross-mingw
... / ...
CommitLineData
1#!/bin/bash
2##
3## This file is part of the sigrok-util project.
4##
5## Copyright (C) 2013-2014 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, write to the Free Software
19## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20##
21
22set -e
23
24# The path where your MXE directory is located.
25MXE=$HOME/mxe-git
26
27# The path where the cross-compiled packages will be installed.
28PREFIX=$HOME/sr_mingw
29
30# The path where to download files to and where to build packages.
31BUILDDIR=./build
32
33# Edit this to enable/disable/modify parallel compiles.
34PARALLEL="-j 2"
35
36# You usually don't need to change anything below this line.
37
38# -----------------------------------------------------------------------------
39
40VER_LIBUSB_WIN32=1.2.6.0
41VER_ZADIG=v2.0.1.160
42
43SF_MIRROR=switch.dl.sourceforge.net
44
45WGET="wget --quiet"
46GIT_CLONE="git clone --depth=1"
47
48# -----------------------------------------------------------------------------
49
50# We need to find tools in the toolchain.
51export PATH=$MXE/usr/bin:$PATH
52
53TOOLCHAIN_TRIPLET="i686-w64-mingw32.static"
54
55P="$PREFIX/lib/pkgconfig"
56P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
57C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
58CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/$TOOLCHAIN_TRIPLET/share/cmake/mxe-conf.cmake"
59L="--disable-shared --enable-static"
60DDK="$MXE/usr/$TOOLCHAIN_TRIPLET/include/ddk"
61
62export PKG_CONFIG_PATH_i686_w64_mingw32_static="$P:$P2"
63
64# Remove build directory contents (if any) and create a new build dir.
65rm -rf $BUILDDIR
66mkdir $BUILDDIR
67cd $BUILDDIR
68
69# -----------------------------------------------------------------------------
70
71mkdir -p $PREFIX
72
73# Cross-compiling Python is highly non-trivial, so we avoid it for now.
74# The download below is a repackaged tarball of the official Python 3.2.3 MSI
75# installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi.
76# The MSI file has been installed on a Windows box and then c:\Python32\libs
77# and c:\Python32\include have been stored in the Python32.tar.gz tarball.
78$WGET http://www.sigrok.org/tmp/Python32.tar.gz -O $PREFIX/Python32.tar.gz
79tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
80
81# Create a dummy python3.pc file so that pkg-config finds Python 3.
82mkdir -p $PREFIX/lib/pkgconfig
83cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
84prefix=$PREFIX
85exec_prefix=\${prefix}
86libdir=\${exec_prefix}/lib
87includedir=\${prefix}/include
88Name: Python
89Description: Python library
90Version: 3.2
91Libs: -L$PREFIX/Python32/libs -lpython32
92Cflags: -I$PREFIX/Python32/include
93EOF
94
95# The python32.dll and python32.zip files will be shipped in the NSIS
96# Windows installers (required for protocol decoding to work).
97# The file python32.dll (NOT the same as python3.dll) is copied from an
98# installed Python 3.2.3 (see above) from c:\Windows\system32\python32.dll.
99# The file python32.zip contains all files from the 'DLLs', 'Lib', and 'libs'
100# subdirectories from an installed Python on Windows (c:\python32), i.e. some
101# libraries and all Python stdlib modules.
102$WGET http://www.sigrok.org/tmp/python32.dll -O $PREFIX/python32.dll
103$WGET http://www.sigrok.org/tmp/python32.zip -O $PREFIX/python32.zip
104
105# libusb0.dll (needs to be shipped with frontends)
106$WGET -c http://$SF_MIRROR/project/libusb-win32/libusb-win32-releases/$VER_LIBUSB_WIN32/libusb-win32-bin-$VER_LIBUSB_WIN32.zip
107unzip -q libusb-win32-bin-$VER_LIBUSB_WIN32.zip
108cp -f libusb-win32-bin-$VER_LIBUSB_WIN32/bin/x86/libusb0_x86.dll $PREFIX/libusb0.dll
109
110# Zadig (we ship this with frontends for easy driver switching).
111$WGET -c http://$SF_MIRROR/project/libwdi/zadig/zadig_$VER_ZADIG.7z
112$WGET -c http://$SF_MIRROR/project/libwdi/zadig/zadig_xp_$VER_ZADIG.7z
1137zr e zadig_$VER_ZADIG.7z
1147zr e zadig_xp_$VER_ZADIG.7z
115cp -f zadig.exe zadig_xp.exe $PREFIX
116
117# libserialport
118$GIT_CLONE git://sigrok.org/libserialport
119cd libserialport
120./autogen.sh
121CFLAGS="-I$DDK" ./configure $C $L
122make $PARALLEL V=1
123make install
124cd ..
125
126# libsigrok
127$GIT_CLONE git://sigrok.org/libsigrok
128cd libsigrok
129patch -p1 < ../../libsigrok_firmwaredir.patch
130./autogen.sh
131./configure $C $L
132make $PARALLEL V=1
133make install
134cd ..
135
136# libsigrokdecode
137$GIT_CLONE git://sigrok.org/libsigrokdecode
138cd libsigrokdecode
139./autogen.sh
140patch -p1 < ../../srd_decodersdir.patch
141./configure $C $L
142make $PARALLEL V=1
143make install
144cd ..
145
146# sigrok-firmware
147$GIT_CLONE git://sigrok.org/sigrok-firmware
148cd sigrok-firmware
149./autogen.sh
150# Nothing gets cross-compiled here, we just need 'make install' basically.
151./configure --prefix=$PREFIX
152make install
153cd ..
154
155# sigrok-firmware-fx2lafw
156$GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
157cd sigrok-firmware-fx2lafw
158./autogen.sh
159# We're building the fx2lafw firmware on the host, no need to cross-compile.
160./configure --prefix=$PREFIX
161make $PARALLEL V=1
162make install
163cd ..
164
165# sigrok-dumps
166$GIT_CLONE git://sigrok.org/sigrok-dumps
167cd sigrok-dumps
168make install DESTDIR=$PREFIX/share/sigrok-dumps
169cd ..
170
171# sigrok-cli
172$GIT_CLONE git://sigrok.org/sigrok-cli
173cd sigrok-cli
174./autogen.sh
175./configure $C
176make $PARALLEL V=1
177make install
178makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
179cd ..
180
181# PulseView
182$GIT_CLONE git://sigrok.org/pulseview
183cd pulseview
184cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y .
185make $PARALLEL VERBOSE=1
186make install
187makensis -DHOME=$HOME contrib/pulseview_cross.nsi
188cd ..
189