]> sigrok.org Git - sigrok-util.git/blob - cross-compile/android/sigrok-cross-android
cross-compile scripts: Use common build dir name.
[sigrok-util.git] / cross-compile / android / sigrok-cross-android
1 #!/bin/bash
2 ##
3 ## This file is part of the sigrok-util project.
4 ##
5 ## Copyright (C) 2013 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 # The path where your Android toolchain directory is located.
25 TOOLCHAIN=$HOME/android/android-arm-toolchain
26 # TOOLCHAIN=$HOME/android/android-mipsel-toolchain
27 # TOOLCHAIN=$HOME/android/android-i686-toolchain
28
29 # Select which Android toolchain to use.
30 # Don't forget to also adapt TOOLCHAIN above if you change TOOLCHAIN_TRIPLET!
31 TOOLCHAIN_TRIPLET=arm-linux-androideabi
32 # TOOLCHAIN_TRIPLET=mipsel-linux-android
33 # TOOLCHAIN_TRIPLET=i686-linux-android
34
35 # The path where the cross-compiled packages will be installed.
36 PREFIX=$HOME/sr_android
37
38 # The path where to download files to and where to build packages.
39 BUILDDIR=./build
40
41 # Edit this to enable/disable/modify parallel compiles.
42 PARALLEL="-j 2"
43
44 # You usually don't need to change anything below this line.
45
46 # -----------------------------------------------------------------------------
47
48 VER_LIBICONV=1.14
49 VER_GETTEXT=0.18.3
50 VER_ZLIB=1.2.8
51 VER_PCRE=8.33
52 VER_LIBFFI=3.0.13
53 VER_GLIB=2.38.2
54 VER_GLIB_SHORT=2.38
55 VER_LIBZIP=0.11.1
56 VER_LIBUSB=0.1.12
57 VER_LIBFTDI=0.20
58 VER_LIBUSBX=1.0.17
59 VER_PYTHON=3.3.3
60
61 SF_MIRROR=switch.dl.sourceforge.net
62
63 WGET="wget --quiet"
64
65 # -----------------------------------------------------------------------------
66
67 # Remove build directory contents (if any) and create a new build dir.
68 rm -rf $BUILDDIR
69 mkdir $BUILDDIR
70 cd $BUILDDIR
71
72 # Build host Python before we start messing with the environment.
73 $WGET http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz
74 tar xJf Python-$VER_PYTHON.tar.xz
75 cd Python-$VER_PYTHON
76 ./configure
77 make python $PARALLEL
78 make Parser/pgen $PARALLEL
79 mv python hostpython
80 mv Parser/pgen Parser/hostpgen
81 cd ..
82
83 # -----------------------------------------------------------------------------
84
85 # We need to find tools in the toolchain.
86 export PATH=$TOOLCHAIN/bin:$PATH
87
88 # Tell pkg-config to only look for our cross-built stuff.
89 export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
90 export -n PKG_CONFIG_PATH
91
92 # Define some helper variables.
93 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
94
95 # Get the latest versions of config.guess/config.sub that know about Android.
96 git clone git://git.savannah.gnu.org/config.git
97
98 # -----------------------------------------------------------------------------
99
100 # Python (needed for libsigrokdecode)
101 cd Python-$VER_PYTHON
102 make distclean
103 autoreconf
104 patch -p1 < ../../Python-$VER_PYTHON.patch
105 ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no ac_cv_func_pipe2=no ac_cv_func_fdatasync=no ac_cv_func_killpg=no ac_cv_func_waitid=no ac_cv_func_sigaltstack=no ./configure $C --build=x86_64-linux-gnu --disable-ipv6
106 make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen install $PARALLEL
107 cd ..
108
109 # libiconv (needed for glib)
110 $WGET http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
111 tar xfz libiconv-$VER_LIBICONV.tar.gz
112 cd libiconv-$VER_LIBICONV
113 cp -f ../config/config.guess build-aux
114 cp -f ../config/config.sub build-aux
115 cp -f ../config/config.guess libcharset/build-aux
116 cp -f ../config/config.sub libcharset/build-aux
117 ./configure $C --enable-shared
118 make lib/localcharset.h
119 cd libcharset
120 make $PARALLEL
121 make install
122 cd ../lib
123 make $PARALLEL
124 make install
125 cd ..
126 test -d $PREFIX/include || mkdir $PREFIX/include
127 cp include/iconv.h.inst $PREFIX/include/iconv.h
128 cd ..
129
130 # gettext (needed for glib)
131 $WGET http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
132 tar xfz gettext-$VER_GETTEXT.tar.gz
133 cd gettext-$VER_GETTEXT
134 ./configure $C --enable-shared --disable-libasprintf
135 cd gettext-runtime
136 make $PARALLEL
137 make install
138 cd ../..
139
140 # zlib (needed for glib and libzip)
141 $WGET http://zlib.net/zlib-$VER_ZLIB.tar.gz
142 tar xfvz zlib-$VER_ZLIB.tar.gz
143 cd zlib-$VER_ZLIB
144 # Note: zlib's configure doesn't understand --host, we need to pass $CC.
145 CC=$TOOLCHAIN_TRIPLET-gcc ./configure --prefix=$PREFIX
146 make $PARALLEL
147 make install
148 cd ..
149
150 # pcre (needed for glib)
151 $WGET ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
152 tar xfvz pcre-$VER_PCRE.tar.gz
153 cd pcre-$VER_PCRE
154 ./configure $C --disable-cpp
155 make $PARALLEL
156 make install
157 cd ..
158
159 # libffi (needed for glib)
160 $WGET ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
161 tar xfz libffi-$VER_LIBFFI.tar.gz
162 cd libffi-$VER_LIBFFI
163 ./configure $C
164 make $PARALLEL
165 make install
166 cd ..
167
168 # glib
169 $WGET http://ftp.gnome.org/pub/gnome/sources/glib/$VER_GLIB_SHORT/glib-$VER_GLIB.tar.xz
170 tar xJf glib-$VER_GLIB.tar.xz
171 cd glib-$VER_GLIB
172 ./autogen.sh
173 # Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
174 LDFLAGS=-L$PREFIX/lib CPPFLAGS=-I$PREFIX/include glib_cv_stack_grows=no glib_cv_uscore=no ac_cv_func_posix_getpwuid_r=no ac_cv_func_posix_getgrgid_r=no ./configure --disable-compile-warnings $C
175 make $PARALLEL
176 make install
177 cd ..
178
179 # libzip
180 $WGET http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
181 tar xfz libzip-$VER_LIBZIP.tar.gz
182 cd libzip-$VER_LIBZIP
183 cp -f ../config/config.guess .
184 cp -f ../config/config.sub .
185 ./configure $C
186 make $PARALLEL
187 make install
188 cd ..
189
190 # libusb-0.1 (not used directly, but needed for libftdi)
191 $WGET http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
192 tar xfz libusb-$VER_LIBUSB.tar.gz
193 cd libusb-$VER_LIBUSB
194 cp -f ../config/config.guess .
195 cp -f ../config/config.sub .
196 ./configure $C
197 # Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs.
198 make lib_LTLIBRARIES=libusb.la SUBDIRS=. $PARALLEL
199 make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
200 cd ..
201
202 # libftdi
203 $WGET http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
204 tar xfz libftdi-$VER_LIBFTDI.tar.gz
205 cd libftdi-$VER_LIBFTDI
206 cp -f ../config/config.guess .
207 cp -f ../config/config.sub .
208 # libftdi needs to find libusb-config which is installed in $PREFIX/bin.
209 PATH=$PREFIX/bin:$PATH ./configure $C
210 make $PARALLEL
211 make install
212 cd ..
213
214 # libusb-1.0
215 $WGET http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2
216 tar xfj libusbx-$VER_LIBUSBX.tar.bz2
217 cd libusbx-$VER_LIBUSBX
218 patch -p1 < ../../libusb-1.0.patch
219 ./configure $C --disable-udev
220 make $PARALLEL
221 make install
222 cd ..
223
224 # libserialport
225 git clone git://sigrok.org/libserialport
226 cd libserialport
227 ./autogen.sh
228 ./configure $C --without-libudev
229 make $PARALLEL V=1
230 make install
231 cd ..
232
233 # libsigrok
234 git clone git://sigrok.org/libsigrok
235 cd libsigrok
236 ./autogen.sh
237 ./configure $C
238 make $PARALLEL V=1
239 make install
240 cd ..
241
242 # libsigrokdecode
243 git clone git://sigrok.org/libsigrokdecode
244 cd libsigrokdecode
245 ./autogen.sh
246 ./configure $C
247 make $PARALLEL V=1
248 make install
249 cd ..
250
251 # sigrok-cli
252 git clone git://sigrok.org/sigrok-cli
253 cd sigrok-cli
254 ./autogen.sh
255 ./configure $C
256 make $PARALLEL V=1
257 make install
258 cd ..
259