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