]> sigrok.org Git - sigrok-util.git/blame - cross-compile/linux/sigrok-cross-linux
sigrok-fwextract-dreamsourcelab-dslogic: Hardcode known-good firmware.
[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
b65a0b06 18## along with this program; if not, see <http://www.gnu.org/licenses/>.
50f0dffc
UH
19##
20
21set -e
22
23# Uncomment/set the following to match your cross-toolchain setup.
24# TOOLCHAIN=...
25# TOOLCHAIN_TRIPLET=...
26# C="--host=$TOOLCHAIN_TRIPLET"
27# export PATH=$TOOLCHAIN/bin:$PATH
28
29# The path where the compiled packages will be installed.
30PREFIX=$HOME/sr
31
32# The path where to download files to and where to build packages.
07947dda 33BUILDDIR=./build
50f0dffc 34
91036110
UH
35# The path where the libsigrok Python bindings will be installed.
36PYPATH=$PREFIX/lib/python2.7/site-packages
37
d2012547
UH
38# JDK include path. Usually found automatically, except on FreeBSD.
39if [ `uname` = "FreeBSD" ]; then
40 JDK="--with-jni-include-path=/usr/local/openjdk7/include"
41fi
42
cabab8f7 43# Edit this to control verbose build output.
a58f6b98 44# V="V=1 VERBOSE=1"
cabab8f7 45
50f0dffc
UH
46# Edit this to enable/disable/modify parallel compiles.
47PARALLEL="-j 2"
48
3ed306f8
UH
49# Uncomment the following lines to build with clang and run scan-build.
50# export CC=clang
51# export CXX=clang++
52# SB="scan-build -k -v"
53
50f0dffc
UH
54# You usually don't need to change anything below this line.
55
56# -----------------------------------------------------------------------------
57
58P="$PREFIX/lib/pkgconfig"
59C="$C --prefix=$PREFIX"
60
61# Remove build directory contents (if any) and create a new build dir.
62rm -rf $BUILDDIR
63mkdir $BUILDDIR
64cd $BUILDDIR
65
a51ca6bd
UH
66GIT_CLONE="git clone --depth=1"
67
50f0dffc
UH
68# -----------------------------------------------------------------------------
69
70# libserialport
a51ca6bd 71$GIT_CLONE git://sigrok.org/libserialport
50f0dffc
UH
72cd libserialport
73./autogen.sh
4ff67f5a
UH
74mkdir build
75cd build
76../configure $C
cabab8f7
UJ
77$SB make $PARALLEL $V
78make install $V
4ff67f5a 79cd ../..
50f0dffc
UH
80
81# libsigrok
91036110 82mkdir -p $PYPATH
a51ca6bd 83$GIT_CLONE git://sigrok.org/libsigrok
50f0dffc
UH
84cd libsigrok
85./autogen.sh
4ff67f5a
UH
86mkdir build
87cd build
d2012547 88PKG_CONFIG_PATH=$P ../configure $C $JDK
cabab8f7
UJ
89$SB make $PARALLEL $V
90PYTHONPATH=$PYPATH $SB make install $V
91$SB make check $V
4ff67f5a 92cd ../..
50f0dffc
UH
93
94# libsigrokdecode
a51ca6bd 95$GIT_CLONE git://sigrok.org/libsigrokdecode
50f0dffc
UH
96cd libsigrokdecode
97./autogen.sh
4ff67f5a
UH
98mkdir build
99cd build
100PKG_CONFIG_PATH=$P ../configure $C
cabab8f7
UJ
101$SB make $PARALLEL $V
102make install $V
103$SB make check $V
4ff67f5a 104cd ../..
50f0dffc
UH
105
106# sigrok-firmware
a51ca6bd 107$GIT_CLONE git://sigrok.org/sigrok-firmware
50f0dffc
UH
108cd sigrok-firmware
109./autogen.sh
4ff67f5a
UH
110mkdir build
111cd build
50f0dffc 112# Nothing gets cross-compiled here, we just need 'make install' basically.
4ff67f5a 113../configure $C
cabab8f7 114make install $V
4ff67f5a 115cd ../..
50f0dffc
UH
116
117# sigrok-firmware-fx2lafw
a51ca6bd 118$GIT_CLONE git://sigrok.org/sigrok-firmware-fx2lafw
50f0dffc
UH
119cd sigrok-firmware-fx2lafw
120./autogen.sh
4ff67f5a
UH
121mkdir build
122cd build
50f0dffc 123# We're building the fx2lafw firmware on the host, no need to cross-compile.
4ff67f5a 124../configure $C
cabab8f7
UJ
125make $PARALLEL $V
126make install $V
4ff67f5a 127cd ../..
50f0dffc
UH
128
129# sigrok-cli
a51ca6bd 130$GIT_CLONE git://sigrok.org/sigrok-cli
50f0dffc
UH
131cd sigrok-cli
132./autogen.sh
4ff67f5a
UH
133mkdir build
134cd build
d2012547
UH
135if [ `uname` = "FreeBSD" ]; then
136 # Temporary fix for: http://sigrok.org/bugzilla/show_bug.cgi?id=552
137 PKG_CONFIG_PATH=$P ../configure $C LDFLAGS=-lusb
138else
139 PKG_CONFIG_PATH=$P ../configure $C
140fi
cabab8f7
UJ
141$SB make $PARALLEL $V
142make install $V
4ff67f5a 143cd ../..
50f0dffc
UH
144
145# PulseView
a51ca6bd 146$GIT_CLONE git://sigrok.org/pulseview
50f0dffc 147cd pulseview
4ff67f5a
UH
148mkdir build
149cd build
3ed306f8 150PKG_CONFIG_PATH=$P $SB cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y ..
cabab8f7
UJ
151$SB make $PARALLEL $V
152make install $V
153$SB make test $V
4ff67f5a 154cd ../..