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