]> sigrok.org Git - sigrok-util.git/blob - cross-compile/linux/sigrok-cross-linux
4886f5b9009f22dd823c6d51c300f833ba84df4d
[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 # -----------------------------------------------------------------------------
52
53 # libserialport
54 git clone git://sigrok.org/libserialport
55 cd libserialport
56 ./autogen.sh
57 ./configure $C
58 make $PARALLEL
59 make install
60 cd ..
61
62 # libsigrok
63 git clone git://sigrok.org/libsigrok
64 cd libsigrok
65 ./autogen.sh
66 PKG_CONFIG_PATH=$P ./configure $C
67 make $PARALLEL
68 make install
69 cd ..
70
71 # libsigrokdecode
72 git clone git://sigrok.org/libsigrokdecode
73 cd libsigrokdecode
74 ./autogen.sh
75 ./configure $C
76 make $PARALLEL
77 make install
78 cd ..
79
80 # sigrok-firmware
81 git clone git://sigrok.org/sigrok-firmware
82 cd sigrok-firmware
83 ./autogen.sh
84 # Nothing gets cross-compiled here, we just need 'make install' basically.
85 ./configure $C
86 make install
87 cd ..
88
89 # sigrok-firmware-fx2lafw
90 git clone git://sigrok.org/sigrok-firmware-fx2lafw
91 cd sigrok-firmware-fx2lafw
92 ./autogen.sh
93 # We're building the fx2lafw firmware on the host, no need to cross-compile.
94 ./configure $C
95 make $PARALLEL
96 make install
97 cd ..
98
99 # sigrok-cli
100 git clone git://sigrok.org/sigrok-cli
101 cd sigrok-cli
102 ./autogen.sh
103 PKG_CONFIG_PATH=$P ./configure $C
104 make $PARALLEL
105 make install
106 cd ..
107
108 # PulseView
109 git clone git://sigrok.org/pulseview
110 cd pulseview
111 PKG_CONFIG_PATH=$P cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y .
112 make $PARALLEL
113 make install
114 cd ..
115