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