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