]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: Add/install sigrok-dumps.
[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##
5## Copyright (C) 2013 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
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.
31BUILDDIR=./sr_mingw_build
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
91d4c754
UH
49# We need to find tools in the toolchain and in the install directory.
50export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH
51
52P="$PREFIX/lib/pkgconfig"
53P2="$MXE/usr/i686-pc-mingw32/lib/pkgconfig"
54C="--host=i686-pc-mingw32 --prefix=$PREFIX"
55CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/i686-pc-mingw32/share/cmake/mxe-conf.cmake"
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
91d4c754
UH
65# Python3
66# Cross-compiling Python is highly non-trivial, so we avoid it for now.
67# The download below is a repackaged tarball of the official Python 3.2.3 MSI
68# installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi
69# The MSI file has been installed on a Windows box and then the c:\Python32
70# files have been stored in the Python32.tar.gz tarball.
71mkdir -p $PREFIX
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
6ba97136 89# Download the Python 3.2.3 MSI installer (needed for NSIS runs).
b7259b10
UH
90$WGET -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \
91 -O $PREFIX/python-3.2.3.msi
6ba97136 92
50d4aefd 93# libusb0.dll (needs to be shipped with frontends)
b7259b10
UH
94$WGET -c http://$SF_MIRROR/project/libusb-win32/libusb-win32-releases/$VER_LIBUSB_WIN32/libusb-win32-bin-$VER_LIBUSB_WIN32.zip
95unzip -q libusb-win32-bin-$VER_LIBUSB_WIN32.zip
50d4aefd
UH
96cp -f libusb-win32-bin-$VER_LIBUSB_WIN32/bin/x86/libusb0_x86.dll $PREFIX/libusb0.dll
97
37d3fad3 98# Zadig (we ship this with frontends for easy driver switching).
b7259b10
UH
99$WGET -c http://$SF_MIRROR/project/libwdi/zadig/zadig_$VER_ZADIG.7z
100$WGET -c http://$SF_MIRROR/project/libwdi/zadig/zadig_xp_$VER_ZADIG.7z
37d3fad3
UH
1017zr e zadig_$VER_ZADIG.7z
1027zr e zadig_xp_$VER_ZADIG.7z
103cp -f zadig.exe zadig_xp.exe $PREFIX
104
43ffde97
UH
105# libserialport
106git clone git://sigrok.org/libserialport
107cd libserialport
108./autogen.sh
e2eb056c 109PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L
06cee43f 110make $PARALLEL V=1
e2eb056c 111make install
43ffde97
UH
112cd ..
113
91d4c754
UH
114# libsigrok
115git clone git://sigrok.org/libsigrok
116cd libsigrok
0e3c8b38 117patch -p1 < ../../libsigrok_firmwaredir.patch
91d4c754 118./autogen.sh
e2eb056c 119PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L
06cee43f 120make $PARALLEL V=1
e2eb056c 121make install
91d4c754
UH
122cd ..
123
124# libsigrokdecode
125git clone git://sigrok.org/libsigrokdecode
126cd libsigrokdecode
127./autogen.sh
e2eb056c 128PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L
06cee43f 129make $PARALLEL V=1
e2eb056c 130make install
91d4c754
UH
131cd ..
132
885dc089
UH
133# sigrok-firmware
134git clone git://sigrok.org/sigrok-firmware
135cd sigrok-firmware
136./autogen.sh
137# Nothing gets cross-compiled here, we just need 'make install' basically.
138./configure --prefix=$PREFIX
139make install
140cd ..
141
142# sigrok-firmware-fx2lafw
143git clone git://sigrok.org/sigrok-firmware-fx2lafw
144cd sigrok-firmware-fx2lafw
145./autogen.sh
146# We're building the fx2lafw firmware on the host, no need to cross-compile.
147./configure --prefix=$PREFIX
06cee43f 148make $PARALLEL V=1
885dc089
UH
149make install
150cd ..
151
9de2e03d
UH
152# sigrok-dumps
153git clone git://sigrok.org/sigrok-dumps
154cd sigrok-dumps
155make install DESTDIR=$PREFIX/share/sigrok-dumps
156cd ..
157
91d4c754
UH
158# sigrok-cli
159git clone git://sigrok.org/sigrok-cli
160cd sigrok-cli
0e3c8b38 161patch -p1 < ../../sigrok_cli_decodersdir.patch
91d4c754 162./autogen.sh
e2eb056c 163PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C
06cee43f 164make $PARALLEL V=1
e2eb056c 165make install
57d08419 166makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
91d4c754
UH
167cd ..
168
91d4c754
UH
169# PulseView
170git clone git://sigrok.org/pulseview
171cd pulseview
82d0ef08 172patch -p1 < ../../pulseview_decodersdir.patch
63a302e7 173PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y -DENABLE_TESTS=y .
e2eb056c
UH
174make $PARALLEL VERBOSE=1
175make install
57d08419 176makensis -DHOME=$HOME contrib/pulseview_cross.nsi
91d4c754
UH
177cd ..
178