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