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