]> sigrok.org Git - sigrok-util.git/blame - cross-compile/linux/sigrok-cross-linux
sigrok-cross-linux: Don't do verbose builds by default.
[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
cabab8f7 39# Edit this to control verbose build output.
a58f6b98 40# V="V=1 VERBOSE=1"
cabab8f7 41
50f0dffc
UH
42# Edit this to enable/disable/modify parallel compiles.
43PARALLEL="-j 2"
44
3ed306f8
UH
45# Uncomment the following lines to build with clang and run scan-build.
46# export CC=clang
47# export CXX=clang++
48# SB="scan-build -k -v"
49
50f0dffc
UH
50# You usually don't need to change anything below this line.
51
52# -----------------------------------------------------------------------------
53
54P="$PREFIX/lib/pkgconfig"
55C="$C --prefix=$PREFIX"
56
57# Remove build directory contents (if any) and create a new build dir.
58rm -rf $BUILDDIR
59mkdir $BUILDDIR
60cd $BUILDDIR
61
a51ca6bd
UH
62GIT_CLONE="git clone --depth=1"
63
50f0dffc
UH
64# -----------------------------------------------------------------------------
65
66# libserialport
a51ca6bd 67$GIT_CLONE git://sigrok.org/libserialport
50f0dffc
UH
68cd libserialport
69./autogen.sh
4ff67f5a
UH
70mkdir build
71cd build
72../configure $C
cabab8f7
UJ
73$SB make $PARALLEL $V
74make install $V
4ff67f5a 75cd ../..
50f0dffc
UH
76
77# libsigrok
91036110 78mkdir -p $PYPATH
a51ca6bd 79$GIT_CLONE git://sigrok.org/libsigrok
50f0dffc
UH
80cd libsigrok
81./autogen.sh
4ff67f5a
UH
82mkdir build
83cd build
84PKG_CONFIG_PATH=$P ../configure $C
cabab8f7
UJ
85$SB make $PARALLEL $V
86PYTHONPATH=$PYPATH $SB make install $V
87$SB make check $V
4ff67f5a 88cd ../..
50f0dffc
UH
89
90# libsigrokdecode
a51ca6bd 91$GIT_CLONE git://sigrok.org/libsigrokdecode
50f0dffc
UH
92cd libsigrokdecode
93./autogen.sh
4ff67f5a
UH
94mkdir build
95cd build
96PKG_CONFIG_PATH=$P ../configure $C
cabab8f7
UJ
97$SB make $PARALLEL $V
98make install $V
99$SB make check $V
4ff67f5a 100cd ../..
50f0dffc
UH
101
102# sigrok-firmware
a51ca6bd 103$GIT_CLONE git://sigrok.org/sigrok-firmware
50f0dffc
UH
104cd sigrok-firmware
105./autogen.sh
4ff67f5a
UH
106mkdir build
107cd build
50f0dffc 108# Nothing gets cross-compiled here, we just need 'make install' basically.
4ff67f5a 109../configure $C
cabab8f7 110make install $V
4ff67f5a 111cd ../..
50f0dffc
UH
112
113# sigrok-firmware-fx2lafw
a51ca6bd 114$GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
50f0dffc
UH
115cd sigrok-firmware-fx2lafw
116./autogen.sh
4ff67f5a
UH
117mkdir build
118cd build
50f0dffc 119# We're building the fx2lafw firmware on the host, no need to cross-compile.
4ff67f5a 120../configure $C
cabab8f7
UJ
121make $PARALLEL $V
122make install $V
4ff67f5a 123cd ../..
50f0dffc
UH
124
125# sigrok-cli
a51ca6bd 126$GIT_CLONE git://sigrok.org/sigrok-cli
50f0dffc
UH
127cd sigrok-cli
128./autogen.sh
4ff67f5a
UH
129mkdir build
130cd build
131PKG_CONFIG_PATH=$P ../configure $C
cabab8f7
UJ
132$SB make $PARALLEL $V
133make install $V
4ff67f5a 134cd ../..
50f0dffc
UH
135
136# PulseView
a51ca6bd 137$GIT_CLONE git://sigrok.org/pulseview
50f0dffc 138cd pulseview
4ff67f5a
UH
139mkdir build
140cd build
3ed306f8 141PKG_CONFIG_PATH=$P $SB cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y ..
cabab8f7
UJ
142$SB make $PARALLEL $V
143make install $V
144$SB make test $V
4ff67f5a 145cd ../..