]> sigrok.org Git - sigrok-util.git/blob - cross-compile/android/sigrok-cross-android
7cdbebe0f5af0697da6f17a5b06ba58155b62aa3
[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=./sr_android_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 # -----------------------------------------------------------------------------
64
65 # Remove build directory contents (if any) and create a new build dir.
66 rm -rf $BUILDDIR
67 mkdir $BUILDDIR
68 cd $BUILDDIR
69
70 # Build host Python before we start messing with the environment.
71 wget http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz
72 tar xJf Python-$VER_PYTHON.tar.xz
73 cd Python-$VER_PYTHON
74 ./configure
75 make python $PARALLEL
76 make Parser/pgen $PARALLEL
77 mv python hostpython
78 mv Parser/pgen Parser/hostpgen
79 cd ..
80
81 # -----------------------------------------------------------------------------
82
83 # We need to find tools in the toolchain.
84 export PATH=$TOOLCHAIN/bin:$PATH
85
86 # Tell pkg-config to only look for our cross-built stuff.
87 export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
88 export -n PKG_CONFIG_PATH
89
90 # Define some helper variables.
91 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
92
93 # Get the latest versions of config.guess/config.sub that know about Android.
94 git clone git://git.savannah.gnu.org/config.git
95
96 # -----------------------------------------------------------------------------
97
98 # Python (needed for libsigrokdecode)
99 cd Python-$VER_PYTHON
100 make distclean
101 autoreconf
102 patch -p1 < ../../Python-$VER_PYTHON.patch
103 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
104 make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen install $PARALLEL
105 cd ..
106
107 # libiconv (needed for glib)
108 wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
109 tar xfz libiconv-$VER_LIBICONV.tar.gz
110 cd libiconv-$VER_LIBICONV
111 cp -f ../config/config.guess build-aux
112 cp -f ../config/config.sub build-aux
113 cp -f ../config/config.guess libcharset/build-aux
114 cp -f ../config/config.sub libcharset/build-aux
115 ./configure $C --enable-shared
116 make lib/localcharset.h
117 cd libcharset
118 make $PARALLEL
119 make install
120 cd ../lib
121 make $PARALLEL
122 make install
123 cd ..
124 test -d $PREFIX/include || mkdir $PREFIX/include
125 cp include/iconv.h.inst $PREFIX/include/iconv.h
126 cd ..
127
128 # gettext (needed for glib)
129 wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
130 tar xfz gettext-$VER_GETTEXT.tar.gz
131 cd gettext-$VER_GETTEXT
132 ./configure $C --enable-shared --disable-libasprintf
133 cd gettext-runtime
134 make $PARALLEL
135 make install
136 cd ../..
137
138 # zlib (needed for glib and libzip)
139 wget http://zlib.net/zlib-$VER_ZLIB.tar.gz
140 tar xfvz zlib-$VER_ZLIB.tar.gz
141 cd zlib-$VER_ZLIB
142 # Note: zlib's configure doesn't understand --host, we need to pass $CC.
143 CC=$TOOLCHAIN_TRIPLET-gcc ./configure --prefix=$PREFIX
144 make $PARALLEL
145 make install
146 cd ..
147
148 # pcre (needed for glib)
149 wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
150 tar xfvz pcre-$VER_PCRE.tar.gz
151 cd pcre-$VER_PCRE
152 ./configure $C --disable-cpp
153 make $PARALLEL
154 make install
155 cd ..
156
157 # libffi (needed for glib)
158 wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
159 tar xfz libffi-$VER_LIBFFI.tar.gz
160 cd libffi-$VER_LIBFFI
161 ./configure $C
162 make $PARALLEL
163 make install
164 cd ..
165
166 # glib
167 wget http://ftp.gnome.org/pub/gnome/sources/glib/$VER_GLIB_SHORT/glib-$VER_GLIB.tar.xz
168 tar xJf glib-$VER_GLIB.tar.xz
169 cd glib-$VER_GLIB
170 ./autogen.sh
171 # Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
172 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
173 make $PARALLEL
174 make install
175 cd ..
176
177 # libzip
178 wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
179 tar xfz libzip-$VER_LIBZIP.tar.gz
180 cd libzip-$VER_LIBZIP
181 cp -f ../config/config.guess .
182 cp -f ../config/config.sub .
183 ./configure $C
184 make $PARALLEL
185 make install
186 cd ..
187
188 # libusb-0.1 (not used directly, but needed for libftdi)
189 wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
190 tar xfz libusb-$VER_LIBUSB.tar.gz
191 cd libusb-$VER_LIBUSB
192 cp -f ../config/config.guess .
193 cp -f ../config/config.sub .
194 ./configure $C
195 # Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs.
196 make lib_LTLIBRARIES=libusb.la SUBDIRS=. $PARALLEL
197 make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
198 cd ..
199
200 # libftdi
201 wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
202 tar xfz libftdi-$VER_LIBFTDI.tar.gz
203 cd libftdi-$VER_LIBFTDI
204 cp -f ../config/config.guess .
205 cp -f ../config/config.sub .
206 # libftdi needs to find libusb-config which is installed in $PREFIX/bin.
207 PATH=$PREFIX/bin:$PATH ./configure $C
208 make $PARALLEL
209 make install
210 cd ..
211
212 # libusb-1.0
213 wget http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2
214 tar xfj libusbx-$VER_LIBUSBX.tar.bz2
215 cd libusbx-$VER_LIBUSBX
216 patch -p1 < ../../libusb-1.0.patch
217 ./configure $C --disable-udev
218 make $PARALLEL
219 make install
220 cd ..
221
222 # libserialport
223 git clone git://sigrok.org/libserialport
224 cd libserialport
225 ./autogen.sh
226 ./configure $C --without-libudev
227 make $PARALLEL
228 make install
229 cd ..
230
231 # libsigrok
232 git clone git://sigrok.org/libsigrok
233 cd libsigrok
234 ./autogen.sh
235 ./configure $C
236 make $PARALLEL
237 make install
238 cd ..
239
240 # libsigrokdecode
241 git clone git://sigrok.org/libsigrokdecode
242 cd libsigrokdecode
243 ./autogen.sh
244 ./configure $C
245 make $PARALLEL
246 make install
247 cd ..
248
249 # sigrok-cli
250 git clone git://sigrok.org/sigrok-cli
251 cd sigrok-cli
252 ./autogen.sh
253 ./configure $C
254 make $PARALLEL
255 make install
256 cd ..
257