]> sigrok.org Git - sigrok-util.git/blame - cross-compile/msys2/sigrok-native-msys2
sigrok-cross-mingw: Drop apparently obsolete libzip patch.
[sigrok-util.git] / cross-compile / msys2 / sigrok-native-msys2
CommitLineData
18b280b7
UH
1#!/bin/sh
2##
3## This file is part of the sigrok-util project.
4##
87b10530 5## Copyright (C) 2016-2018 Uwe Hermann <uwe@hermann-uwe.de>
18b280b7
UH
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
b65a0b06 18## along with this program; if not, see <http://www.gnu.org/licenses/>.
18b280b7
UH
19##
20
21set -e
22
87b10530
C
23# The base path prefix where the compiled packages will be installed.
24PREFIXBASE=$HOME/sr_msys2
18b280b7 25
87b10530
C
26# The base path prefix where to download files to and where to build packages.
27BUILDBASE=./build
18b280b7 28
87b10530
C
29# The $PREFIX subdir where the libsigrok Python bindings will be installed.
30PYBASE=lib/python2.7/site-packages
18b280b7
UH
31
32# Edit this to control verbose build output.
33# V="V=1 VERBOSE=1"
34
35# Edit this to enable/disable/modify parallel compiles.
36PARALLEL="-j 2"
37
87b10530
C
38# Edit this to enable/disable debug builds.
39DEBUG=0
40
18b280b7
UH
41# You usually don't need to change anything below this line.
42
43# -----------------------------------------------------------------------------
44
8708cd82 45# Abort if the user runs the script in an "MSYS2 MSYS" shell.
9dcc756a 46if [ $MSYSTEM = "MSYS" ]; then
8708cd82
UH
47 echo "Building in an 'MSYS2 MSYS' shell will not work, aborting."
48 echo "Please use the 'MSYS2 MinGW 64-bit' (or 32-bit) shell."
49 exit
50fi
51
87b10530
C
52# The build target type: "i686" (32bit) or "x86_64" (64bit).
53# This is selected based on which MSYS2 shell is being used to do the build.
54TARGET=$MSYSTEM_CARCH
55
cbb27416 56VER_SIGROK_FIRMWARE_FX2LAFW=0.1.6
18b280b7 57
87b10530
C
58WGET="wget -c --quiet"
59GIT_CLONE="git clone --depth=1"
60
61REPO_BASE="git://sigrok.org"
18b280b7 62
87b10530
C
63# Construct the build and install directory pathnames.
64if [ $TARGET = "i686" ]; then
65 SUFFIX="32"
66else
67 SUFFIX="64"
68fi
682d505b 69if [ $DEBUG = 1 ]; then
87b10530 70 # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
682d505b 71 BUILD_TYPE="Debug"
87b10530
C
72 PREFIX=$PREFIXBASE"_debug_"$SUFFIX
73 BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
682d505b
C
74else
75 BUILD_TYPE="Release"
87b10530
C
76 PREFIX=$PREFIXBASE"_release_"$SUFFIX
77 BUILDDIR=$BUILDBASE"_release_"$SUFFIX
682d505b
C
78fi
79
87b10530
C
80PYPATH=$PREFIX/$PYBASE
81
9085e553
C
82# Eliminate the host Python path environment variable, if any is set.
83export PYTHONPATH=
84
87b10530
C
85# -----------------------------------------------------------------------------
86
0b0d0cc0 87P="$PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH"
18b280b7
UH
88C="$C --prefix=$PREFIX"
89L="--disable-shared --enable-static"
90
91# Path to Qt binaries (needed for cmake to find the Qt libs).
92PATH="/mingw32/qt5-static/bin:$PATH"
93
94W="mingw-w64-$TARGET"
95
87b10530 96mkdir -p $PYPATH
9bcef9f4 97
18b280b7
UH
98# Remove build directory contents (if any) and create a new build dir.
99rm -rf $BUILDDIR
100mkdir $BUILDDIR
101cd $BUILDDIR
102
103# -----------------------------------------------------------------------------
104
105if [ "x$1" = "xprepare" ]; then
106 # Update package list, install/update all requirements.
107 pacman -Sy
108 pacman -S \
fc936858 109 autoconf automake autoconf-archive libtool make pkg-config wget patch \
34a60103 110 $W-toolchain $W-glib2 $W-glibmm $W-libusb $W-libftdi $W-check $W-boost \
18b280b7 111 $W-libzip $W-doxygen $W-python3 $W-python3-numpy $W-python3-gobject \
fc936858 112 $W-python3-setuptools $W-swig $W-qt5-static $W-cmake $W-nsis
18b280b7
UH
113 exit
114fi
115
116# -----------------------------------------------------------------------------
117
118# libusb
119$GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
120cd libusb
121./bootstrap.sh
122./configure $C $L
123make -j1 $V
124make install $V
125cd ..
126
127# libserialport
9bcef9f4 128$GIT_CLONE $REPO_BASE/libserialport
18b280b7
UH
129cd libserialport
130./autogen.sh
131mkdir build
132cd build
133../configure $C $L
134$SB make $PARALLEL $V
135make install $V
136cd ../..
137
138# libsigrok
9bcef9f4 139$GIT_CLONE $REPO_BASE/libsigrok
18b280b7
UH
140cd libsigrok
141./autogen.sh
142mkdir build
143cd build
a4846659 144PKG_CONFIG_PATH=$P PYTHON=python3 ../configure $C $L --disable-python
18b280b7
UH
145$SB make $PARALLEL $V
146PYTHONPATH=$PYPATH $SB make install $V
147# $SB make check $V # TODO
148cd ../..
149
150# libsigrokdecode
9bcef9f4 151$GIT_CLONE $REPO_BASE/libsigrokdecode
18b280b7
UH
152cd libsigrokdecode
153./autogen.sh
154mkdir build
155cd build
156PKG_CONFIG_PATH=$P ../configure $C $L
157$SB make $PARALLEL $V
158make install $V
159# $SB make check $V # TODO
160cd ../..
161
162# sigrok-firmware
9bcef9f4 163$GIT_CLONE $REPO_BASE/sigrok-firmware
18b280b7
UH
164cd sigrok-firmware
165./autogen.sh
166mkdir build
167cd build
168# Nothing gets cross-compiled here, we just need 'make install' basically.
169../configure $C
170make install $V
171cd ../..
172
173# sigrok-firmware-fx2lafw
174$WGET http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-$VER_SIGROK_FIRMWARE_FX2LAFW.tar.gz
175tar xfz sigrok-firmware-fx2lafw-bin-$VER_SIGROK_FIRMWARE_FX2LAFW.tar.gz
176cd sigrok-firmware-fx2lafw-bin-$VER_SIGROK_FIRMWARE_FX2LAFW
177cp *.fw $PREFIX/share/sigrok-firmware/
178cd ..
179
180# TODO: Doesn't build, libsigrokdecode linking errors.
181# # sigrok-cli
9bcef9f4 182# $GIT_CLONE $REPO_BASE/sigrok-cli
18b280b7
UH
183# cd sigrok-cli
184# ./autogen.sh
185# mkdir build
186# cd build
187# PKG_CONFIG_PATH=$P ../configure $C $L
188# $SB make $PARALLEL $V
189# make install $V
190# # makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi # TODO
191# cd ../..
192
193# TODO: Doesn't build, various linking errors.
194# PulseView
9bcef9f4 195$GIT_CLONE $REPO_BASE/pulseview
18b280b7
UH
196cd pulseview
197mkdir build
198cd build
682d505b
C
199PKG_CONFIG_PATH=$P $SB cmake \
200 -G "Unix Makefiles" \
201 -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
202 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
203 -DDISABLE_WERROR=y \
87b10530 204 -DENABLE_TESTS=n \
682d505b 205 ..
18b280b7
UH
206$SB make $PARALLEL $V
207make install $V
208# $SB make test $V # TODO
209# makensis -DHOME=$HOME contrib/pulseview_cross.nsi # TODO
210cd ../..