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