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