]> sigrok.org Git - sigrok-util.git/blame - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: Use a fake python3.pc.
[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
33# You usually don't need to change anything below this line.
34
35# -----------------------------------------------------------------------------
36
91d4c754
UH
37# We need to find tools in the toolchain and in the install directory.
38export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH
39
40P="$PREFIX/lib/pkgconfig"
41P2="$MXE/usr/i686-pc-mingw32/lib/pkgconfig"
42C="--host=i686-pc-mingw32 --prefix=$PREFIX"
43CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/i686-pc-mingw32/share/cmake/mxe-conf.cmake"
44L="--disable-shared --enable-static"
45
46# Remove build directory contents (if any) and create a new build dir.
47rm -rf $BUILDDIR
48mkdir $BUILDDIR
49cd $BUILDDIR
50
51# -----------------------------------------------------------------------------
52
91d4c754
UH
53# Python3
54# Cross-compiling Python is highly non-trivial, so we avoid it for now.
55# The download below is a repackaged tarball of the official Python 3.2.3 MSI
56# installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi
57# The MSI file has been installed on a Windows box and then the c:\Python32
58# files have been stored in the Python32.tar.gz tarball.
59mkdir -p $PREFIX
60wget http://www.sigrok.org/tmp/Python32.tar.gz -O $PREFIX/Python32.tar.gz
61tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
62
cd6c7174
UH
63# Create a dummy python3.pc file so that pkg-config finds Python 3.
64mkdir -p $PREFIX/lib/pkgconfig
65cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF
66prefix=$PREFIX
67exec_prefix=\${prefix}
68libdir=\${exec_prefix}/lib
69includedir=\${prefix}/include
70Name: Python
71Description: Python library
72Version: 3.2
73Libs: -L$PREFIX/Python32/libs -lpython32
74Cflags: -I$PREFIX/Python32/include
91d4c754 75EOF
91d4c754 76
6ba97136
UH
77# Download the Python 3.2.3 MSI installer (needed for NSIS runs).
78wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \
79 -O $PREFIX/python-3.2.3.msi
80
43ffde97
UH
81# libserialport
82git clone git://sigrok.org/libserialport
83cd libserialport
84./autogen.sh
85PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
86cd ..
87
91d4c754
UH
88# libsigrok
89git clone git://sigrok.org/libsigrok
90cd libsigrok
0e3c8b38 91patch -p1 < ../../libsigrok_firmwaredir.patch
91d4c754 92./autogen.sh
eb5279c7 93PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
91d4c754
UH
94cd ..
95
96# libsigrokdecode
97git clone git://sigrok.org/libsigrokdecode
98cd libsigrokdecode
99./autogen.sh
cd6c7174 100PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
91d4c754
UH
101cd ..
102
885dc089
UH
103# sigrok-firmware
104git clone git://sigrok.org/sigrok-firmware
105cd sigrok-firmware
106./autogen.sh
107# Nothing gets cross-compiled here, we just need 'make install' basically.
108./configure --prefix=$PREFIX
109make install
110cd ..
111
112# sigrok-firmware-fx2lafw
113git clone git://sigrok.org/sigrok-firmware-fx2lafw
114cd sigrok-firmware-fx2lafw
115./autogen.sh
116# We're building the fx2lafw firmware on the host, no need to cross-compile.
117./configure --prefix=$PREFIX
118make
119make install
120cd ..
121
91d4c754
UH
122# sigrok-cli
123git clone git://sigrok.org/sigrok-cli
124cd sigrok-cli
0e3c8b38 125patch -p1 < ../../sigrok_cli_decodersdir.patch
91d4c754
UH
126./autogen.sh
127PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C && make install
57d08419 128makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
91d4c754
UH
129cd ..
130
91d4c754
UH
131# PulseView
132git clone git://sigrok.org/pulseview
133cd pulseview
22838903 134patch -p1 < ../../pulseview_linkfix.patch
0e3c8b38 135patch -p1 < ../../pulseview_decodersdir.patch
2929463b 136PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y . && make install VERBOSE=1
57d08419 137makensis -DHOME=$HOME contrib/pulseview_cross.nsi
91d4c754
UH
138cd ..
139