]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-android: Do a verbose build of the sigrok components.
[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
45# -----------------------------------------------------------------------------
46
91d4c754
UH
47# We need to find tools in the toolchain and in the install directory.
48export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH
49
50P="$PREFIX/lib/pkgconfig"
51P2="$MXE/usr/i686-pc-mingw32/lib/pkgconfig"
52C="--host=i686-pc-mingw32 --prefix=$PREFIX"
53CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/i686-pc-mingw32/share/cmake/mxe-conf.cmake"
54L="--disable-shared --enable-static"
55
56# Remove build directory contents (if any) and create a new build dir.
57rm -rf $BUILDDIR
58mkdir $BUILDDIR
59cd $BUILDDIR
60
61# -----------------------------------------------------------------------------
62
91d4c754
UH
63# Python3
64# Cross-compiling Python is highly non-trivial, so we avoid it for now.
65# The download below is a repackaged tarball of the official Python 3.2.3 MSI
66# installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi
67# The MSI file has been installed on a Windows box and then the c:\Python32
68# files have been stored in the Python32.tar.gz tarball.
69mkdir -p $PREFIX
70wget http://www.sigrok.org/tmp/Python32.tar.gz -O $PREFIX/Python32.tar.gz
71tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
72
cd6c7174
UH
73# Create a dummy python3.pc file so that pkg-config finds Python 3.
74mkdir -p $PREFIX/lib/pkgconfig
75cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
76prefix=$PREFIX
77exec_prefix=\${prefix}
78libdir=\${exec_prefix}/lib
79includedir=\${prefix}/include
80Name: Python
81Description: Python library
82Version: 3.2
83Libs: -L$PREFIX/Python32/libs -lpython32
84Cflags: -I$PREFIX/Python32/include
91d4c754 85EOF
91d4c754 86
6ba97136
UH
87# Download the Python 3.2.3 MSI installer (needed for NSIS runs).
88wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \
89 -O $PREFIX/python-3.2.3.msi
90
50d4aefd
UH
91# libusb0.dll (needs to be shipped with frontends)
92wget -c http://$SF_MIRROR/project/libusb-win32/libusb-win32-releases/$VER_LIBUSB_WIN32/libusb-win32-bin-$VER_LIBUSB_WIN32.zip
93unzip libusb-win32-bin-$VER_LIBUSB_WIN32.zip
94cp -f libusb-win32-bin-$VER_LIBUSB_WIN32/bin/x86/libusb0_x86.dll $PREFIX/libusb0.dll
95
37d3fad3
UH
96# Zadig (we ship this with frontends for easy driver switching).
97wget -c http://$SF_MIRROR/project/libwdi/zadig/zadig_$VER_ZADIG.7z
98wget -c http://$SF_MIRROR/project/libwdi/zadig/zadig_xp_$VER_ZADIG.7z
997zr e zadig_$VER_ZADIG.7z
1007zr e zadig_xp_$VER_ZADIG.7z
101cp -f zadig.exe zadig_xp.exe $PREFIX
102
43ffde97
UH
103# libserialport
104git clone git://sigrok.org/libserialport
105cd libserialport
106./autogen.sh
e2eb056c
UH
107PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L
108make $PARALLEL
109make install
43ffde97
UH
110cd ..
111
91d4c754
UH
112# libsigrok
113git clone git://sigrok.org/libsigrok
114cd libsigrok
0e3c8b38 115patch -p1 < ../../libsigrok_firmwaredir.patch
91d4c754 116./autogen.sh
e2eb056c
UH
117PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L
118make $PARALLEL
119make install
91d4c754
UH
120cd ..
121
122# libsigrokdecode
123git clone git://sigrok.org/libsigrokdecode
124cd libsigrokdecode
125./autogen.sh
e2eb056c
UH
126PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L
127make $PARALLEL
128make install
91d4c754
UH
129cd ..
130
885dc089
UH
131# sigrok-firmware
132git clone git://sigrok.org/sigrok-firmware
133cd sigrok-firmware
134./autogen.sh
135# Nothing gets cross-compiled here, we just need 'make install' basically.
136./configure --prefix=$PREFIX
137make install
138cd ..
139
140# sigrok-firmware-fx2lafw
141git clone git://sigrok.org/sigrok-firmware-fx2lafw
142cd sigrok-firmware-fx2lafw
143./autogen.sh
144# We're building the fx2lafw firmware on the host, no need to cross-compile.
145./configure --prefix=$PREFIX
e2eb056c 146make $PARALLEL
885dc089
UH
147make install
148cd ..
149
91d4c754
UH
150# sigrok-cli
151git clone git://sigrok.org/sigrok-cli
152cd sigrok-cli
0e3c8b38 153patch -p1 < ../../sigrok_cli_decodersdir.patch
91d4c754 154./autogen.sh
e2eb056c
UH
155PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C
156make $PARALLEL
157make install
57d08419 158makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
91d4c754
UH
159cd ..
160
91d4c754
UH
161# PulseView
162git clone git://sigrok.org/pulseview
163cd pulseview
22838903 164patch -p1 < ../../pulseview_linkfix.patch
82d0ef08 165patch -p1 < ../../pulseview_decodersdir.patch
050d001d 166PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y -DENABLE_COTIRE=y .
e2eb056c
UH
167make $PARALLEL VERBOSE=1
168make install
57d08419 169makensis -DHOME=$HOME contrib/pulseview_cross.nsi
91d4c754
UH
170cd ..
171