]> sigrok.org Git - sigrok-util.git/blame - cross-compile/linux/sigrok-cross-linux
cross-compile scripts: Use common build dir name.
[sigrok-util.git] / cross-compile / linux / sigrok-cross-linux
CommitLineData
50f0dffc
UH
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.
07947dda 34BUILDDIR=./build
50f0dffc
UH
35
36# Edit this to enable/disable/modify parallel compiles.
37PARALLEL="-j 2"
38
39# You usually don't need to change anything below this line.
40
41# -----------------------------------------------------------------------------
42
43P="$PREFIX/lib/pkgconfig"
44C="$C --prefix=$PREFIX"
45
46# Remove build directory contents (if any) and create a new build dir.
47rm -rf $BUILDDIR
48mkdir $BUILDDIR
49cd $BUILDDIR
50
51# -----------------------------------------------------------------------------
52
53# libserialport
54git clone git://sigrok.org/libserialport
55cd libserialport
56./autogen.sh
57./configure $C
58make $PARALLEL
59make install
60cd ..
61
62# libsigrok
63git clone git://sigrok.org/libsigrok
64cd libsigrok
65./autogen.sh
66PKG_CONFIG_PATH=$P ./configure $C
67make $PARALLEL
68make install
69cd ..
70
71# libsigrokdecode
72git clone git://sigrok.org/libsigrokdecode
73cd libsigrokdecode
74./autogen.sh
75./configure $C
76make $PARALLEL
77make install
78cd ..
79
80# sigrok-firmware
81git clone git://sigrok.org/sigrok-firmware
82cd sigrok-firmware
83./autogen.sh
84# Nothing gets cross-compiled here, we just need 'make install' basically.
85./configure $C
86make install
87cd ..
88
89# sigrok-firmware-fx2lafw
90git clone git://sigrok.org/sigrok-firmware-fx2lafw
91cd sigrok-firmware-fx2lafw
92./autogen.sh
93# We're building the fx2lafw firmware on the host, no need to cross-compile.
94./configure $C
95make $PARALLEL
96make install
97cd ..
98
99# sigrok-cli
100git clone git://sigrok.org/sigrok-cli
101cd sigrok-cli
102./autogen.sh
103PKG_CONFIG_PATH=$P ./configure $C
104make $PARALLEL
105make install
106cd ..
107
108# PulseView
109git clone git://sigrok.org/pulseview
110cd pulseview
111PKG_CONFIG_PATH=$P cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y .
112make $PARALLEL
113make install
114cd ..
115