]> sigrok.org Git - sigrok-util.git/blame - cross-compile/linux/sigrok-cross-linux
sigrok-cross-linux: Use /bin/sh.
[sigrok-util.git] / cross-compile / linux / sigrok-cross-linux
CommitLineData
ab2ccf3d 1#!/bin/sh
50f0dffc
UH
2##
3## This file is part of the sigrok-util project.
4##
5## Copyright (C) 2014 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
22set -e
23
24# Uncomment/set the following to match your cross-toolchain setup.
25# TOOLCHAIN=...
26# TOOLCHAIN_TRIPLET=...
27# C="--host=$TOOLCHAIN_TRIPLET"
28# export PATH=$TOOLCHAIN/bin:$PATH
29
30# The path where the compiled packages will be installed.
31PREFIX=$HOME/sr
32
33# The path where to download files to and where to build packages.
07947dda 34BUILDDIR=./build
50f0dffc 35
91036110
UH
36# The path where the libsigrok Python bindings will be installed.
37PYPATH=$PREFIX/lib/python2.7/site-packages
38
50f0dffc
UH
39# Edit this to enable/disable/modify parallel compiles.
40PARALLEL="-j 2"
41
3ed306f8
UH
42# Uncomment the following lines to build with clang and run scan-build.
43# export CC=clang
44# export CXX=clang++
45# SB="scan-build -k -v"
46
50f0dffc
UH
47# You usually don't need to change anything below this line.
48
49# -----------------------------------------------------------------------------
50
51P="$PREFIX/lib/pkgconfig"
52C="$C --prefix=$PREFIX"
53
54# Remove build directory contents (if any) and create a new build dir.
55rm -rf $BUILDDIR
56mkdir $BUILDDIR
57cd $BUILDDIR
58
a51ca6bd
UH
59GIT_CLONE="git clone --depth=1"
60
50f0dffc
UH
61# -----------------------------------------------------------------------------
62
63# libserialport
a51ca6bd 64$GIT_CLONE git://sigrok.org/libserialport
50f0dffc
UH
65cd libserialport
66./autogen.sh
4ff67f5a
UH
67mkdir build
68cd build
69../configure $C
3ed306f8 70$SB make $PARALLEL
50f0dffc 71make install
4ff67f5a 72cd ../..
50f0dffc
UH
73
74# libsigrok
91036110 75mkdir -p $PYPATH
a51ca6bd 76$GIT_CLONE git://sigrok.org/libsigrok
50f0dffc
UH
77cd libsigrok
78./autogen.sh
4ff67f5a
UH
79mkdir build
80cd build
81PKG_CONFIG_PATH=$P ../configure $C
3ed306f8
UH
82$SB make $PARALLEL
83PYTHONPATH=$PYPATH $SB make install
84$SB make check
4ff67f5a 85cd ../..
50f0dffc
UH
86
87# libsigrokdecode
a51ca6bd 88$GIT_CLONE git://sigrok.org/libsigrokdecode
50f0dffc
UH
89cd libsigrokdecode
90./autogen.sh
4ff67f5a
UH
91mkdir build
92cd build
93PKG_CONFIG_PATH=$P ../configure $C
3ed306f8 94$SB make $PARALLEL
50f0dffc 95make install
3ed306f8 96$SB make check
4ff67f5a 97cd ../..
50f0dffc
UH
98
99# sigrok-firmware
a51ca6bd 100$GIT_CLONE git://sigrok.org/sigrok-firmware
50f0dffc
UH
101cd sigrok-firmware
102./autogen.sh
4ff67f5a
UH
103mkdir build
104cd build
50f0dffc 105# Nothing gets cross-compiled here, we just need 'make install' basically.
4ff67f5a 106../configure $C
50f0dffc 107make install
4ff67f5a 108cd ../..
50f0dffc
UH
109
110# sigrok-firmware-fx2lafw
a51ca6bd 111$GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
50f0dffc
UH
112cd sigrok-firmware-fx2lafw
113./autogen.sh
4ff67f5a
UH
114mkdir build
115cd build
50f0dffc 116# We're building the fx2lafw firmware on the host, no need to cross-compile.
4ff67f5a 117../configure $C
50f0dffc
UH
118make $PARALLEL
119make install
4ff67f5a 120cd ../..
50f0dffc
UH
121
122# sigrok-cli
a51ca6bd 123$GIT_CLONE git://sigrok.org/sigrok-cli
50f0dffc
UH
124cd sigrok-cli
125./autogen.sh
4ff67f5a
UH
126mkdir build
127cd build
128PKG_CONFIG_PATH=$P ../configure $C
3ed306f8 129$SB make $PARALLEL
50f0dffc 130make install
4ff67f5a 131cd ../..
50f0dffc
UH
132
133# PulseView
a51ca6bd 134$GIT_CLONE git://sigrok.org/pulseview
50f0dffc 135cd pulseview
4ff67f5a
UH
136mkdir build
137cd build
3ed306f8
UH
138PKG_CONFIG_PATH=$P $SB cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y ..
139$SB make $PARALLEL
50f0dffc 140make install
323c8c8d 141$SB make test
4ff67f5a 142cd ../..
50f0dffc 143