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