]> sigrok.org Git - sigrok-util.git/blame_incremental - cross-compile/linux/sigrok-cross-linux
sigrok-cross-linux: Do out-of-tree builds per default.
[sigrok-util.git] / cross-compile / linux / sigrok-cross-linux
... / ...
CommitLineData
1#!/bin/bash
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.
34BUILDDIR=./build
35
36# The path where the libsigrok Python bindings will be installed.
37PYPATH=$PREFIX/lib/python2.7/site-packages
38
39# Edit this to enable/disable/modify parallel compiles.
40PARALLEL="-j 2"
41
42# You usually don't need to change anything below this line.
43
44# -----------------------------------------------------------------------------
45
46P="$PREFIX/lib/pkgconfig"
47C="$C --prefix=$PREFIX"
48
49# Remove build directory contents (if any) and create a new build dir.
50rm -rf $BUILDDIR
51mkdir $BUILDDIR
52cd $BUILDDIR
53
54GIT_CLONE="git clone --depth=1"
55
56# -----------------------------------------------------------------------------
57
58# libserialport
59$GIT_CLONE git://sigrok.org/libserialport
60cd libserialport
61./autogen.sh
62mkdir build
63cd build
64../configure $C
65make $PARALLEL
66make install
67cd ../..
68
69# libsigrok
70mkdir -p $PYPATH
71$GIT_CLONE git://sigrok.org/libsigrok
72cd libsigrok
73./autogen.sh
74mkdir build
75cd build
76PKG_CONFIG_PATH=$P ../configure $C
77make $PARALLEL
78PYTHONPATH=$PYPATH make install
79cd ../..
80
81# libsigrokdecode
82$GIT_CLONE git://sigrok.org/libsigrokdecode
83cd libsigrokdecode
84./autogen.sh
85mkdir build
86cd build
87PKG_CONFIG_PATH=$P ../configure $C
88make $PARALLEL
89make install
90cd ../..
91
92# sigrok-firmware
93$GIT_CLONE git://sigrok.org/sigrok-firmware
94cd sigrok-firmware
95./autogen.sh
96mkdir build
97cd build
98# Nothing gets cross-compiled here, we just need 'make install' basically.
99../configure $C
100make install
101cd ../..
102
103# sigrok-firmware-fx2lafw
104$GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
105cd sigrok-firmware-fx2lafw
106./autogen.sh
107mkdir build
108cd build
109# We're building the fx2lafw firmware on the host, no need to cross-compile.
110../configure $C
111make $PARALLEL
112make install
113cd ../..
114
115# sigrok-cli
116$GIT_CLONE git://sigrok.org/sigrok-cli
117cd sigrok-cli
118./autogen.sh
119mkdir build
120cd build
121PKG_CONFIG_PATH=$P ../configure $C
122make $PARALLEL
123make install
124cd ../..
125
126# PulseView
127$GIT_CLONE git://sigrok.org/pulseview
128cd pulseview
129mkdir build
130cd build
131PKG_CONFIG_PATH=$P cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y ..
132make $PARALLEL
133make install
134cd ../..
135