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