]> sigrok.org Git - sigrok-util.git/blob - cross-compile/android/sigrok-cross-android
sigrok-cross-android: Fix "prepare" due to upstream changes.
[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-2015 Uwe Hermann <uwe@hermann-uwe.de>
6 ## Copyright (C) 2013-2015 Marcus Comstedt <marcus@mc.pp.se>
7 ##
8 ## This program is free software; you can redistribute it and/or modify
9 ## it under the terms of the GNU General Public License as published by
10 ## the Free Software Foundation; either version 2 of the License, or
11 ## (at your option) any later version.
12 ##
13 ## This program is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ## GNU General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, write to the Free Software
20 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21 ##
22
23 set -e
24
25 # The path where the NDK, SDK, and toolchains are located.
26 ANDROID_PATH=$HOME/android
27
28 # The path where the Android NDK is located.
29 ANDROID_NDK=$ANDROID_PATH/android-ndk-r10d
30
31 # The path where the Android SDK is located.
32 ANDROID_SDK=$ANDROID_PATH/android-sdk-linux
33
34 # The path where your Android toolchain directory is located.
35 TOOLCHAIN=$ANDROID_PATH/android-arm-toolchain
36 # TOOLCHAIN=$ANDROID_PATH/android-mipsel-toolchain
37 # TOOLCHAIN=$ANDROID_PATH/android-i686-toolchain
38 # TOOLCHAIN=$ANDROID_NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86
39 # TOOLCHAIN=$ANDROID_NDK/toolchains/x86-4.9/prebuilt/linux-x86
40 # TOOLCHAIN=$ANDROID_NDK/toolchains/mipsel-linux-android-4.9/prebuilt/linux-x86
41
42 # Select which Android toolchain to use.
43 # Don't forget to also adapt TOOLCHAIN above if you change TOOLCHAIN_TRIPLET!
44 TOOLCHAIN_TRIPLET=arm-linux-androideabi
45 # TOOLCHAIN_TRIPLET=mipsel-linux-android
46 # TOOLCHAIN_TRIPLET=i686-linux-android
47
48 # The path where the cross-compiled packages will be installed.
49 PREFIX=$HOME/sr_android
50
51 # The path where to download files to and where to build packages.
52 BUILDDIR=./build
53
54 # Edit this to control verbose build output.
55 # V="V=1 VERBOSE=1"
56
57 # Edit this to enable/disable/modify parallel compiles.
58 PARALLEL="-j 2"
59
60 # You usually don't need to change anything below this line.
61
62 # -----------------------------------------------------------------------------
63
64 VER_LIBICONV=1.14
65 VER_GETTEXT=0.19.4
66 VER_ZLIB=1.2.8
67 VER_PCRE=8.36
68 VER_LIBFFI=3.2.1
69 VER_GLIB=2.43.3
70 VER_GLIB_SHORT=2.43
71 VER_LIBSIGCXX=2.4.0
72 VER_LIBSIGCXX_SHORT=2.4
73 VER_LIBZIP=0.11.2
74 VER_LIBFTDI1=1.2
75 VER_LIBUSB=1.0.19
76 VER_PYTHON=3.3.3
77 VER_BOOST=1.57.0
78 VER_QT=5.4.1
79 VER_NDK=10d
80 VER_SDK=23.0.2
81 VER_AND_BT=22.0.1 # Android build tools version
82 VER_AND_API=16    # Target Android API version
83
84 SF_MIRROR=download.sourceforge.net
85
86 WGET="wget -c --quiet"
87 GIT_CLONE="git clone --depth=1"
88
89 case "$TOOLCHAIN_TRIPLET" in
90   arm*) TARGET_ARCH=armeabi;;
91   mips*) TARGET_ARCH=mips;;
92   i686*) TARGET_ARCH=x86;;
93   *) echo >&2 "Unknown prefix for TOOLCHAIN_TRIPLET."; exit 1;;
94 esac
95
96 # -----------------------------------------------------------------------------
97
98 # Get the Android NDK and SDK, install required packages and toolchains.
99 if [ "x$1" = "xprepare" ]; then
100   mkdir -p $ANDROID_PATH
101   cd $ANDROID_PATH
102
103   # NDK
104   $WGET http://dl.google.com/android/ndk/android-ndk-r$VER_NDK-linux-x86.bin
105   chmod 700 android-ndk-r$VER_NDK-linux-x86.bin
106   ./android-ndk-r$VER_NDK-linux-x86.bin -y
107   cd android-ndk-r$VER_NDK
108   ./build/tools/make-standalone-toolchain.sh --platform=android-$VER_AND_API \
109     --toolchain=arm-linux-androideabi-4.9 \
110     --install-dir=$ANDROID_PATH/android-arm-toolchain
111   ./build/tools/make-standalone-toolchain.sh --platform=android-$VER_AND_API \
112     --toolchain=x86-4.9 \
113     --install-dir=$ANDROID_PATH/android-i686-toolchain
114   ./build/tools/make-standalone-toolchain.sh --platform=android-$VER_AND_API \
115     --toolchain=mipsel-linux-android-4.9 \
116     --install-dir=$ANDROID_PATH/android-mipsel-toolchain
117   cd ..
118
119   # SDK
120   $WGET http://dl.google.com/android/android-sdk_r$VER_SDK-linux.tgz
121   tar xfz android-sdk_r$VER_SDK-linux.tgz
122   cd android-sdk-linux
123   echo y | ./tools/android update sdk --no-ui --all --filter platform-tools,build-tools-$VER_AND_BT,android-$VER_AND_API
124   cd ..
125
126   exit
127 fi
128
129 # -----------------------------------------------------------------------------
130
131 # Remove build directory contents (if any) and create a new build dir.
132 rm -rf $BUILDDIR
133 mkdir $BUILDDIR
134 cd $BUILDDIR
135
136 # -----------------------------------------------------------------------------
137
138 # Build host Python before we start messing with the environment.
139 # Don't do parallel builds, this doesn't seem to work well.
140 $WGET http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz
141 tar xfJ Python-$VER_PYTHON.tar.xz
142 cd Python-$VER_PYTHON
143 ./configure
144 make python $V
145 mv python hostpython
146 cd ..
147
148 # -----------------------------------------------------------------------------
149
150 # We need to find tools in the toolchain.
151 export PATH=$TOOLCHAIN/bin:$PATH
152
153 # Tell pkg-config to only look for our cross-built stuff.
154 export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
155 export -n PKG_CONFIG_PATH
156
157 # Check toolchain
158 if test -d "$TOOLCHAIN"/sysroot; then
159   echo "Toolchain is standalone"
160   STANDALONE_TOOLCHAIN=$TOOLCHAIN
161   SYSROOT=
162 else
163   STANDALONE_TOOLCHAIN=
164   NATIVE_API_LEVEL=$VER_AND_API
165   SYSROOT_DIR=${ANDROID_NDK}/platforms/android-${NATIVE_API_LEVEL}/arch-${TARGET_ARCH%eabi*}
166   if [ ! -d "$SYSROOT_DIR" ]; then
167     echo >&2 "Can't build with NDK toolchain; sysroot $SYSROOT_DIR is missing"
168     exit 1
169   fi
170   SYSROOT="--sysroot $SYSROOT_DIR"
171   CC="$TOOLCHAIN_TRIPLET-gcc $SYSROOT"
172   CXX="$TOOLCHAIN_TRIPLET-g++ $SYSROOT"
173   export CC CXX
174 fi
175 NDK_TOOLCHAIN_VERSION=`${TOOLCHAIN_TRIPLET}-gcc --version | head -1 | sed -e 's/.* \([0-9]\+\.[0-9.]\+\)\( \|.*\)$/\1/'`
176
177 # Define some helper variables.
178 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
179 CM="-Wno-dev -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake -DANDROID_ABI=${TARGET_ARCH} -DCMAKE_INSTALL_PREFIX=${PREFIX}"
180 if [ -n "$STANDALONE_TOOLCHAIN" ]; then
181   CM="$CM -DANDROID_STANDALONE_TOOLCHAIN=${STANDALONE_TOOLCHAIN}"
182   if [ -d "${ANDROID_NDK}/sources/cxx-stl" ]; then
183     CM="$CM -DANDROID_STL_PATH=${ANDROID_NDK}/sources/cxx-stl"
184   fi
185 else
186   CM="$CM -DANDROID_NDK=${ANDROID_NDK}"
187   CM="$CM -DANDROID_NATIVE_API_LEVEL=${NATIVE_API_LEVEL}"
188   CM="$CM -DANDROID_TOOLCHAIN_NAME=${TOOLCHAIN_TRIPLET}-${NDK_TOOLCHAIN_VERSION}"
189 fi
190
191 # Look for STL, needed to build bindings
192 STL_BASE="${ANDROID_NDK}/sources/cxx-stl/gnu-libstdc++/${NDK_TOOLCHAIN_VERSION}"
193 if [ -d ${STL_BASE}/include ]; then
194   CPPFLAGS_STL="-I${STL_BASE}/include -I${STL_BASE}/libs/${TARGET_ARCH}/include"
195   LDFLAGS_STL="-L${STL_BASE}/libs/${TARGET_ARCH} -Wl,-rpath=${STL_BASE}/libs/${TARGET_ARCH}"
196   BINDINGS_CONFIG="--enable-bindings"
197 else
198   echo "Warning: STL unavailable, libsigrok bindings will not be built."
199   CPPFLAGS_STL=
200   LDFLAGS_STL=
201   BINDINGS_CONFIG="--disable-bindings"
202 fi
203
204 # -----------------------------------------------------------------------------
205
206 # Get the latest versions of config.guess/config.sub that know about Android.
207 $GIT_CLONE git://git.savannah.gnu.org/config.git
208
209 # Get a toolchain for cmake that knows about Android.
210 $WGET https://android-cmake.googlecode.com/hg/toolchain/android.toolchain.cmake
211 patch < ../android.toolchain.cmake.patch android.toolchain.cmake
212
213 # -----------------------------------------------------------------------------
214
215 # Python (needed for libsigrokdecode)
216 # Don't do parallel Python builds, this doesn't seem to work well.
217 cd Python-$VER_PYTHON
218 make distclean $V
219 autoreconf
220 patch -p1 < ../../Python-$VER_PYTHON.patch
221 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
222 sed -i "s/^#zlib/zlib/g" Modules/Setup
223 make PYTHON_FOR_BUILD='_PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) ./hostpython' install $V
224 cd ..
225
226 # libiconv (needed for glib)
227 $WGET http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
228 tar xfz libiconv-$VER_LIBICONV.tar.gz
229 cd libiconv-$VER_LIBICONV
230 cp -f ../config/config.guess build-aux
231 cp -f ../config/config.sub build-aux
232 cp -f ../config/config.guess libcharset/build-aux
233 cp -f ../config/config.sub libcharset/build-aux
234 ./configure $C --enable-shared
235 make lib/localcharset.h $V
236 cd libcharset
237 make $PARALLEL $V
238 make install $V
239 cd ../lib
240 make $PARALLEL $V
241 make install $V
242 cd ..
243 test -d $PREFIX/include || mkdir $PREFIX/include
244 cp include/iconv.h.inst $PREFIX/include/iconv.h
245 cd ..
246
247 # gettext (needed for glib)
248 $WGET http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
249 tar xfz gettext-$VER_GETTEXT.tar.gz
250 cd gettext-$VER_GETTEXT
251 ./configure $C --enable-shared --disable-libasprintf
252 cd gettext-runtime
253 make $PARALLEL $V
254 make install $V
255 cd ../..
256
257 # zlib (needed for glib and libzip)
258 $WGET http://zlib.net/zlib-$VER_ZLIB.tar.gz
259 tar xfz zlib-$VER_ZLIB.tar.gz
260 cd zlib-$VER_ZLIB
261 # Note: zlib's configure doesn't understand --host, we need to pass $CC.
262 CC="$TOOLCHAIN_TRIPLET-gcc $SYSROOT" ./configure --prefix=$PREFIX
263 make $PARALLEL $V
264 make install $V
265 cd ..
266
267 # pcre (needed for glib)
268 $WGET ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
269 tar xfz pcre-$VER_PCRE.tar.gz
270 cd pcre-$VER_PCRE
271 ./configure $C --disable-cpp
272 make $PARALLEL $V
273 make install $V
274 cd ..
275
276 # libffi (needed for glib)
277 $WGET ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
278 tar xfz libffi-$VER_LIBFFI.tar.gz
279 cd libffi-$VER_LIBFFI
280 ./configure $C
281 make $PARALLEL $V
282 make install $V
283 cd ..
284
285 # glib (needed for libsigrok)
286 $WGET http://ftp.gnome.org/pub/gnome/sources/glib/$VER_GLIB_SHORT/glib-$VER_GLIB.tar.xz
287 tar xfJ glib-$VER_GLIB.tar.xz
288 cd glib-$VER_GLIB
289 NOCONFIGURE=yes ./autogen.sh
290 # Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
291 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
292 make $PARALLEL $V
293 make install $V
294 cd ..
295
296 # libzip (needed for libsigrok)
297 $WGET http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
298 tar xfz libzip-$VER_LIBZIP.tar.gz
299 cd libzip-$VER_LIBZIP
300 cp -f ../config/config.guess .
301 cp -f ../config/config.sub .
302 ./configure $C
303 make $PARALLEL $V
304 make install $V
305 cd ..
306
307 # libusb-1.0 (needed for libsigrok)
308 $WGET http://$SF_MIRROR/project/libusb/libusb-1.0/libusb-$VER_LIBUSB/libusb-$VER_LIBUSB.tar.bz2
309 tar xfj libusb-$VER_LIBUSB.tar.bz2
310 cd libusb-$VER_LIBUSB
311 patch -p1 < ../../libusb-1.0.patch
312 ./configure $C --disable-udev
313 make $PARALLEL $V
314 make install $V
315 cd ..
316
317 # libftdi1 (needed for libsigrok)
318 $WGET http://www.intra2net.com/en/developer/libftdi/download/libftdi1-$VER_LIBFTDI1.tar.bz2
319 tar xfj libftdi1-$VER_LIBFTDI1.tar.bz2
320 cd libftdi1-$VER_LIBFTDI1
321 cmake $CM -DFTDIPP=no -DDOCUMENTATION=no -DEXAMPLES=no -DFTDI_EEPROM=no -DPYTHON_BINDINGS=no .
322 make $PARALLEL $V
323 make install $V
324 cd ..
325
326 # libserialport
327 $GIT_CLONE git://sigrok.org/libserialport
328 cd libserialport
329 ./autogen.sh
330 mkdir build
331 cd build
332 ../configure $C
333 make $PARALLEL $V
334 make install $V
335 cd ../..
336
337 # Build dependencies for libsigrok bindings if needed
338
339 if [ x"$CPPFLAGS_STL" != x ]; then
340
341   # libsigc++ (needed for glibmm)
342   $WGET http://ftp.gnome.org/pub/gnome/sources/libsigc++/$VER_LIBSIGCXX_SHORT/libsigc++-$VER_LIBSIGCXX.tar.xz
343   tar xfJ libsigc++-$VER_LIBSIGCXX.tar.xz
344   cd libsigc++-$VER_LIBSIGCXX
345   cp -f ../config/config.guess build
346   cp -f ../config/config.sub build
347   CPPFLAGS="$CPPFLAGS_STL" LDFLAGS="$LDFLAGS_STL -lgnustl_shared" ./configure --disable-documentation $C
348   make $PARALLEL $V
349   make install $V
350   cd ..
351
352   # glibmm (needed for libsigrok bindings)
353   $WGET http://ftp.gnome.org/pub/gnome/sources/glibmm/$VER_GLIB_SHORT/glibmm-$VER_GLIB.tar.xz
354   tar xfJ glibmm-$VER_GLIB.tar.xz
355   cd glibmm-$VER_GLIB
356   CPPFLAGS="$CPPFLAGS_STL" LDFLAGS="$LDFLAGS_STL -lgnustl_shared" ./configure --disable-documentation $C
357   make $PARALLEL $V
358   make install $V
359   cd ..
360
361 fi
362
363 # libsigrok
364 $GIT_CLONE git://sigrok.org/libsigrok
365 cd libsigrok
366 ./autogen.sh
367 mkdir build
368 cd build
369 CPPFLAGS="$CPPFLAGS_STL" LDFLAGS="$LDFLAGS_STL" ../configure $C $BINDINGS_CONFIG --datadir=/sdcard
370 make $PARALLEL $V
371 make datadir='$(datarootdir)' install $V
372 cd ../..
373
374 # libsigrokdecode
375 $GIT_CLONE git://sigrok.org/libsigrokdecode
376 cd libsigrokdecode
377 ./autogen.sh
378 mkdir build
379 cd build
380 ../configure $C
381 make $PARALLEL $V
382 make install $V
383 cd ../..
384
385 # sigrok-cli
386 $GIT_CLONE git://sigrok.org/sigrok-cli
387 cd sigrok-cli
388 ./autogen.sh
389 mkdir build
390 cd build
391 ../configure $C
392 make $PARALLEL $V
393 make install $V
394 cd ../..
395
396 # Check if we have all requirements to build PulseView:
397
398 if [ -z "$ANDROID_NDK" -o ! -d "$ANDROID_NDK" ]; then
399   echo "Android NDK not available, not building PulseView."
400   exit 0
401 fi
402
403 if [ -z "$ANDROID_SDK" -o ! -d "$ANDROID_SDK"/platforms/android-$VER_AND_API ]; then
404   echo "Android SDK with platform $VER_AND_API not available, not building PulseView."
405   exit 0
406 fi
407
408 if [ ! -e "${ANDROID_SDK}/tools/android" ]; then
409   echo "Essential Android build tools not available, not building PulseView."
410   exit 0
411 fi
412
413 NDK_HOST=`"$ANDROID_NDK/ndk-build" -p 2>/dev/null | awk '$1 == "HOST_TAG" { print $3 }'`
414
415 # Boost (needed for PulseView)
416 $WGET http://$SF_MIRROR/project/boost/boost/$VER_BOOST/boost_${VER_BOOST//./_}.tar.bz2
417 tar xfj boost_${VER_BOOST//./_}.tar.bz2
418 cd boost_${VER_BOOST//./_}
419 CC= ./bootstrap.sh --with-toolset=gcc --with-libraries=filesystem,system,thread,test --without-icu
420 echo "using gcc : $NDK_TOOLCHAIN_VERSION : \"${TOOLCHAIN_TRIPLET}-g++\" : <cxxflags>\"$SYSROOT -I$PREFIX/include $CPPFLAGS_STL\" <linkflags>\"$SYSROOT -L$PREFIX/lib $LDFLAGS_STL -lgnustl_shared\" ;" > user-config.jam
421 ./b2 -q -d+2 --ignore-site-config --user-config=user-config.jam toolset=gcc variant=release link=shared threading=multi runtime-link=shared target-os=android --prefix=$PREFIX --layout=system install $PARALLEL
422 cd ..
423
424 # Qt (needed for PulseView)
425 $WGET http://download.qt-project.org/official_releases/qt/${VER_QT%.*}/${VER_QT}/single/qt-everywhere-opensource-src-${VER_QT}.tar.gz
426 tar xfz qt-everywhere-opensource-src-${VER_QT}.tar.gz
427 cd qt-everywhere-opensource-src-${VER_QT}
428 patch -p1 < ../../android-qt.patch
429 CC= CXX= ./configure \
430         --prefix="$PREFIX" \
431         -developer-build \
432         -xplatform android-g++ \
433         -nomake tests \
434         -nomake examples \
435         -android-sdk "$ANDROID_SDK" \
436         -android-ndk "$ANDROID_NDK" \
437         -android-ndk-host "$NDK_HOST" \
438         -android-arch "$TARGET_ARCH" \
439         -android-toolchain-version "$NDK_TOOLCHAIN_VERSION" \
440         -skip qttranslations \
441         -skip qtwebkit \
442         -skip qtserialport \
443         -skip qtwebkit-examples \
444         -skip qtlocation \
445         -skip qtconnectivity \
446         -opensource -confirm-license -silent
447 export ANDROID_API_VERSION=android-$VER_AND_API
448 export ANDROID_BUILD_TOOLS_REVISION=$VER_AND_BT
449 make module-qtbase module-qtandroidextras module-qtsvg module-qtimageformats $PARALLEL $V
450 make install $V
451 cd ..
452
453 # sigrok-androidutils
454 $GIT_CLONE git://sigrok.org/sigrok-androidutils
455 cd sigrok-androidutils
456 ./autogen.sh
457 ./configure $C --with-android-sdk="${ANDROID_SDK}" --with-android-platform=android-$VER_AND_API
458 make $PARALLEL $V
459 make install $V
460 cd ..
461
462 # Strip all shared libs to reduce size.
463 find $PREFIX -iname "*.so" -exec ${TOOLCHAIN_TRIPLET}-strip -S {} \;
464
465 # PulseView
466 $GIT_CLONE git://sigrok.org/pulseview
467 cd pulseview
468 cmake $CM -DENABLE_TESTS=y .
469 make $PARALLEL $V
470 make install $V
471 ${TOOLCHAIN_TRIPLET}-strip -S libs/$TARGET_ARCH/libpulseview.so
472 cd android
473 "${ANDROID_SDK}/tools/android" update project -p . -t android-$VER_AND_API -n PulseView
474 ant debug
475 cd ../..