]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: Drop code for currently unmaintained frontends.
[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
91d4c754
UH
35# We need to find tools in the toolchain and in the install directory.
36export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH
37
38P="$PREFIX/lib/pkgconfig"
39P2="$MXE/usr/i686-pc-mingw32/lib/pkgconfig"
40C="--host=i686-pc-mingw32 --prefix=$PREFIX"
41CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/i686-pc-mingw32/share/cmake/mxe-conf.cmake"
42L="--disable-shared --enable-static"
43
44# Remove build directory contents (if any) and create a new build dir.
45rm -rf $BUILDDIR
46mkdir $BUILDDIR
47cd $BUILDDIR
48
49# -----------------------------------------------------------------------------
50
91d4c754
UH
51# Python3
52# Cross-compiling Python is highly non-trivial, so we avoid it for now.
53# The download below is a repackaged tarball of the official Python 3.2.3 MSI
54# installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi
55# The MSI file has been installed on a Windows box and then the c:\Python32
56# files have been stored in the Python32.tar.gz tarball.
57mkdir -p $PREFIX
58wget http://www.sigrok.org/tmp/Python32.tar.gz -O $PREFIX/Python32.tar.gz
59tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
60
61# Create a dummy python3-config that points to Python32 above.
62mkdir -p $PREFIX/bin
63cat >$PREFIX/bin/python3-config <<EOF
64#!/usr/bin/python3
65import sys
66import getopt
67valid_opts = ['includes', 'cflags', 'libs', 'ldflags']
68opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
69opt_flags = [flag for (flag, val) in opts]
70for opt in opt_flags:
71 if opt in ('--includes', '--cflags'):
72 print('-I$PREFIX/Python32/include')
73 elif opt in ('--libs', '--ldflags'):
74 print('-L$PREFIX/Python32/libs -lpython32')
75EOF
76chmod 755 $PREFIX/bin/python3-config
77
6ba97136
UH
78# Download the Python 3.2.3 MSI installer (needed for NSIS runs).
79wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \
80 -O $PREFIX/python-3.2.3.msi
81
91d4c754
UH
82# libsigrok
83git clone git://sigrok.org/libsigrok
84cd libsigrok
85./autogen.sh
eb5279c7 86PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
91d4c754
UH
87cd ..
88
89# libsigrokdecode
90git clone git://sigrok.org/libsigrokdecode
91cd libsigrokdecode
92./autogen.sh
93PYTHON3_CONFIG=$PREFIX/bin/python3-config PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
94cd ..
95
96# sigrok-cli
97git clone git://sigrok.org/sigrok-cli
98cd sigrok-cli
99./autogen.sh
100PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C && make install
6ba97136 101makensis contrib/sigrok-cli_cross.nsi
91d4c754
UH
102cd ..
103
91d4c754
UH
104# PulseView
105git clone git://sigrok.org/pulseview
106cd pulseview
99344584 107# Temporary workaround: append (not prepend) "-llzma -llcms2" to the linker.
dd64ca23 108sed -i '247a \\tlist(APPEND PULSEVIEW_LINK_LIBS "-llzma -llcms2") # Quick hack' CMakeLists.txt
cf28c06c 109PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y . && make install VERBOSE=1
6ba97136 110makensis contrib/pulseview_cross.nsi
91d4c754
UH
111cd ..
112