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