]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: Build libusbx.
[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
22# The path where your MXE directory is located.
23MXE=$HOME/mxe-git
24
25# The path where the cross-compiled packages will be installed.
26PREFIX=$HOME/sr_mingw
27
28# The path where to download files to and where to build packages.
29BUILDDIR=./sr_mingw_build
30
31# You usually don't need to change anything below this line.
32
33# -----------------------------------------------------------------------------
34
6cc41785
ML
35SF_MIRROR=switch.dl.sourceforge.net
36
37VER_LIBUSBX=1.0.17
38
39# -----------------------------------------------------------------------------
40
91d4c754
UH
41# We need to find tools in the toolchain and in the install directory.
42export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH
43
44P="$PREFIX/lib/pkgconfig"
45P2="$MXE/usr/i686-pc-mingw32/lib/pkgconfig"
46C="--host=i686-pc-mingw32 --prefix=$PREFIX"
47CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/i686-pc-mingw32/share/cmake/mxe-conf.cmake"
48L="--disable-shared --enable-static"
49
50# Remove build directory contents (if any) and create a new build dir.
51rm -rf $BUILDDIR
52mkdir $BUILDDIR
53cd $BUILDDIR
54
55# -----------------------------------------------------------------------------
56
91d4c754
UH
57# Python3
58# Cross-compiling Python is highly non-trivial, so we avoid it for now.
59# The download below is a repackaged tarball of the official Python 3.2.3 MSI
60# installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi
61# The MSI file has been installed on a Windows box and then the c:\Python32
62# files have been stored in the Python32.tar.gz tarball.
63mkdir -p $PREFIX
64wget http://www.sigrok.org/tmp/Python32.tar.gz -O $PREFIX/Python32.tar.gz
65tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
66
67# Create a dummy python3-config that points to Python32 above.
68mkdir -p $PREFIX/bin
69cat >$PREFIX/bin/python3-config <<EOF
70#!/usr/bin/python3
71import sys
72import getopt
73valid_opts = ['includes', 'cflags', 'libs', 'ldflags']
74opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
75opt_flags = [flag for (flag, val) in opts]
76for opt in opt_flags:
77 if opt in ('--includes', '--cflags'):
78 print('-I$PREFIX/Python32/include')
79 elif opt in ('--libs', '--ldflags'):
80 print('-L$PREFIX/Python32/libs -lpython32')
81EOF
82chmod 755 $PREFIX/bin/python3-config
83
6ba97136
UH
84# Download the Python 3.2.3 MSI installer (needed for NSIS runs).
85wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \
86 -O $PREFIX/python-3.2.3.msi
87
6cc41785
ML
88# libusbx
89wget http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2
90tar xfj libusbx-$VER_LIBUSBX.tar.bz2
91cd libusbx-$VER_LIBUSBX
92PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
93cd ..
94
43ffde97
UH
95# libserialport
96git clone git://sigrok.org/libserialport
97cd libserialport
98./autogen.sh
99PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
100cd ..
101
91d4c754
UH
102# libsigrok
103git clone git://sigrok.org/libsigrok
104cd libsigrok
105./autogen.sh
eb5279c7 106PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
91d4c754
UH
107cd ..
108
109# libsigrokdecode
110git clone git://sigrok.org/libsigrokdecode
111cd libsigrokdecode
112./autogen.sh
113PYTHON3_CONFIG=$PREFIX/bin/python3-config PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
114cd ..
115
116# sigrok-cli
117git clone git://sigrok.org/sigrok-cli
118cd sigrok-cli
119./autogen.sh
120PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C && make install
57d08419 121makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
91d4c754
UH
122cd ..
123
91d4c754
UH
124# PulseView
125git clone git://sigrok.org/pulseview
126cd pulseview
cb1a1fd5 127patch -p1 < ../../pulseview.patch
cf28c06c 128PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y . && make install VERBOSE=1
57d08419 129makensis -DHOME=$HOME contrib/pulseview_cross.nsi
91d4c754
UH
130cd ..
131