]> sigrok.org Git - sigrok-util.git/blob - cross-compile/android/sigrok-cross-android
sigrok-cross-android: Enable parallel and verbose builds.
[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 the Android NDK is located.
25 ANDROID_NDK=$HOME/android/android-ndk-r9d
26
27 # The path where the Android SDK is located.
28 ANDROID_SDK=$HOME/android/android-sdk-linux
29
30 # The path where your Android toolchain directory is located.
31 TOOLCHAIN=$HOME/android/android-arm-toolchain
32 # TOOLCHAIN=$HOME/android/android-mipsel-toolchain
33 # TOOLCHAIN=$HOME/android/android-i686-toolchain
34
35 # Select which Android toolchain to use.
36 # Don't forget to also adapt TOOLCHAIN above if you change TOOLCHAIN_TRIPLET!
37 TOOLCHAIN_TRIPLET=arm-linux-androideabi
38 # TOOLCHAIN_TRIPLET=mipsel-linux-android
39 # TOOLCHAIN_TRIPLET=i686-linux-android
40
41 # The path where the cross-compiled packages will be installed.
42 PREFIX=$HOME/sr_android
43
44 # The path where to download files to and where to build packages.
45 BUILDDIR=./build
46
47 # Edit this to enable/disable/modify parallel compiles.
48 PARALLEL="-j 2"
49
50 # You usually don't need to change anything below this line.
51
52 # -----------------------------------------------------------------------------
53
54 VER_LIBICONV=1.14
55 VER_GETTEXT=0.18.3
56 VER_ZLIB=1.2.8
57 VER_PCRE=8.33
58 VER_LIBFFI=3.0.13
59 VER_GLIB=2.38.2
60 VER_GLIB_SHORT=2.38
61 VER_LIBZIP=0.11.1
62 VER_LIBFTDI1=1.1
63 VER_LIBUSBX=1.0.17
64 VER_PYTHON=3.3.3
65 VER_BOOST=1.55.0
66 VER_QT=5.3.1
67
68 SF_MIRROR=switch.dl.sourceforge.net
69
70 WGET="wget --quiet"
71 GIT_CLONE="git clone --depth=1"
72
73 case "$TOOLCHAIN_TRIPLET" in
74   arm*) TARGET_ARCH=armeabi;;
75   mips*) TARGET_ARCH=mips;;
76   i686*) TARGET_ARCH=x86;;
77   *) echo >&2 "Unknown prefix for TOOLCHAIN_TRIPLET."; exit 1;;
78 esac
79
80 # -----------------------------------------------------------------------------
81
82 # Remove build directory contents (if any) and create a new build dir.
83 rm -rf $BUILDDIR
84 mkdir $BUILDDIR
85 cd $BUILDDIR
86
87 # -----------------------------------------------------------------------------
88
89 # Build host Python before we start messing with the environment.
90 $WGET http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz
91 tar xJf Python-$VER_PYTHON.tar.xz
92 cd Python-$VER_PYTHON
93 ./configure
94 make python $PARALLEL
95 mv python hostpython
96 cd ..
97
98 # -----------------------------------------------------------------------------
99
100 # We need to find tools in the toolchain.
101 export PATH=$TOOLCHAIN/bin:$PATH
102
103 # Tell pkg-config to only look for our cross-built stuff.
104 export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
105 export -n PKG_CONFIG_PATH
106
107 # Define some helper variables.
108 C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
109 CM="-Wno-dev -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake -DANDROID_ABI=${TARGET_ARCH} -DCMAKE_INSTALL_PREFIX=${PREFIX} -DANDROID_STANDALONE_TOOLCHAIN=${TOOLCHAIN}"
110
111 # -----------------------------------------------------------------------------
112
113 # Get the latest versions of config.guess/config.sub that know about Android.
114 $GIT_CLONE git://git.savannah.gnu.org/config.git
115
116 # Get a toolchain for cmake that knows about Android.
117 $WGET https://android-cmake.googlecode.com/hg/toolchain/android.toolchain.cmake
118 patch < ../android.toolchain.cmake.patch android.toolchain.cmake
119
120 # -----------------------------------------------------------------------------
121
122 # Python (needed for libsigrokdecode)
123 cd Python-$VER_PYTHON
124 make distclean
125 autoreconf
126 patch -p1 < ../../Python-$VER_PYTHON.patch
127 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
128 sed -i "s/^#zlib/zlib/g" Modules/Setup
129 make PYTHON_FOR_BUILD=./hostpython install $PARALLEL
130 cd ..
131
132 # libiconv (needed for glib)
133 $WGET http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
134 tar xfz libiconv-$VER_LIBICONV.tar.gz
135 cd libiconv-$VER_LIBICONV
136 cp -f ../config/config.guess build-aux
137 cp -f ../config/config.sub build-aux
138 cp -f ../config/config.guess libcharset/build-aux
139 cp -f ../config/config.sub libcharset/build-aux
140 ./configure $C --enable-shared
141 make lib/localcharset.h
142 cd libcharset
143 make $PARALLEL
144 make install
145 cd ../lib
146 make $PARALLEL
147 make install
148 cd ..
149 test -d $PREFIX/include || mkdir $PREFIX/include
150 cp include/iconv.h.inst $PREFIX/include/iconv.h
151 cd ..
152
153 # gettext (needed for glib)
154 $WGET http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
155 tar xfz gettext-$VER_GETTEXT.tar.gz
156 cd gettext-$VER_GETTEXT
157 ./configure $C --enable-shared --disable-libasprintf
158 cd gettext-runtime
159 make $PARALLEL
160 make install
161 cd ../..
162
163 # zlib (needed for glib and libzip)
164 $WGET http://zlib.net/zlib-$VER_ZLIB.tar.gz
165 tar xfvz zlib-$VER_ZLIB.tar.gz
166 cd zlib-$VER_ZLIB
167 # Note: zlib's configure doesn't understand --host, we need to pass $CC.
168 CC=$TOOLCHAIN_TRIPLET-gcc ./configure --prefix=$PREFIX
169 make $PARALLEL
170 make install
171 cd ..
172
173 # pcre (needed for glib)
174 $WGET ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
175 tar xfvz pcre-$VER_PCRE.tar.gz
176 cd pcre-$VER_PCRE
177 ./configure $C --disable-cpp
178 make $PARALLEL
179 make install
180 cd ..
181
182 # libffi (needed for glib)
183 $WGET ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
184 tar xfz libffi-$VER_LIBFFI.tar.gz
185 cd libffi-$VER_LIBFFI
186 ./configure $C
187 make $PARALLEL
188 make install
189 cd ..
190
191 # glib (needed for libsigrok)
192 $WGET http://ftp.gnome.org/pub/gnome/sources/glib/$VER_GLIB_SHORT/glib-$VER_GLIB.tar.xz
193 tar xJf glib-$VER_GLIB.tar.xz
194 cd glib-$VER_GLIB
195 ./autogen.sh
196 # Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
197 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
198 make $PARALLEL
199 make install
200 cd ..
201
202 # libzip (needed for libsigrok)
203 $WGET http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
204 tar xfz libzip-$VER_LIBZIP.tar.gz
205 cd libzip-$VER_LIBZIP
206 cp -f ../config/config.guess .
207 cp -f ../config/config.sub .
208 ./configure $C
209 make $PARALLEL
210 make install
211 cd ..
212
213 # libusb-1.0 (needed for libsigrok)
214 $WGET http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2
215 tar xfj libusbx-$VER_LIBUSBX.tar.bz2
216 cd libusbx-$VER_LIBUSBX
217 patch -p1 < ../../libusb-1.0.patch
218 ./configure $C --disable-udev
219 make $PARALLEL
220 make install
221 cd ..
222
223 # libftdi1 (needed for libsigrok)
224 $WGET http://www.intra2net.com/en/developer/libftdi/download/libftdi1-$VER_LIBFTDI1.tar.bz2
225 tar xfj libftdi1-$VER_LIBFTDI1.tar.bz2
226 cd libftdi1-$VER_LIBFTDI1
227 cmake $CM .
228 make $PARALLEL
229 make install
230 cd ..
231
232 # libserialport
233 $GIT_CLONE git://sigrok.org/libserialport
234 cd libserialport
235 ./autogen.sh
236 ./configure $C
237 make $PARALLEL V=1
238 make install
239 cd ..
240
241 # libsigrok
242 $GIT_CLONE git://sigrok.org/libsigrok
243 cd libsigrok
244 ./autogen.sh
245 ./configure $C --datadir=/sdcard
246 make $PARALLEL V=1
247 make install
248 cd ..
249
250 # libsigrokdecode
251 $GIT_CLONE git://sigrok.org/libsigrokdecode
252 cd libsigrokdecode
253 ./autogen.sh
254 ./configure $C
255 make $PARALLEL V=1
256 make install
257 cd ..
258
259 # sigrok-cli
260 $GIT_CLONE git://sigrok.org/sigrok-cli
261 cd sigrok-cli
262 ./autogen.sh
263 ./configure $C
264 make $PARALLEL V=1
265 make install
266 cd ..
267
268 # Check if we have all requirements to build PulseView:
269
270 if [ -z "$ANDROID_NDK" -o ! -d "$ANDROID_NDK" ]; then
271   echo "Android NDK not available, not building PulseView."
272   exit 0
273 fi
274
275 if [ -z "$ANDROID_SDK" -o \
276      ! -d "$ANDROID_SDK"/platforms/android-8 -o \
277      ! -d "$ANDROID_SDK"/platforms/android-10 -o \
278      ! -d "$ANDROID_SDK"/platforms/android-11 -o \
279      ! -d "$ANDROID_SDK"/platforms/android-14 -o \
280      ! -d "$ANDROID_SDK"/platforms/android-16 ]; then
281   echo "Android SDK with platforms 8 10 11 14 16 not available, not building PulseView."
282   exit 0
283 fi
284
285 if [ ! -e "${ANDROID_SDK}/tools/android" ]; then
286   echo "Essential Android build tools not available, not building PulseView."
287   exit 0
288 fi
289
290 NDK_TOOLCHAIN_VERSION=`${TOOLCHAIN_TRIPLET}-gcc --version | head -1 | sed -e 's/.* \([0-9]\+\.[0-9.]\+\)\( \|.*\)$/\1/'`
291 NDK_HOST=`"$ANDROID_NDK/ndk-build" -p 2>/dev/null | awk '$1 == "HOST_TAG" { print $3 }'`
292
293 # Boost (needed for PulseView)
294 $WGET http://$SF_MIRROR/project/boost/boost/$VER_BOOST/boost_${VER_BOOST//./_}.tar.bz2
295 tar xfj boost_${VER_BOOST//./_}.tar.bz2
296 cd boost_${VER_BOOST//./_}
297 patch -p1 < ../../boost.patch
298 ./bootstrap.sh --with-toolset=gcc --with-libraries=filesystem,system --without-icu
299 echo "using gcc : $NDK_TOOLCHAIN_VERSION : \"${TOOLCHAIN_TRIPLET}-g++\" : <cxxflags>\"-I$PREFIX/include -I${ANDROID_NDK}/sources/cxx-stl/gnu-libstdc++/${NDK_TOOLCHAIN_VERSION}/include -I${ANDROID_NDK}/sources/cxx-stl/gnu-libstdc++/${NDK_TOOLCHAIN_VERSION}/libs/${TARGET_ARCH}/include\" <linkflags>\"-L$PREFIX/lib -L${ANDROID_NDK}/sources/cxx-stl/gnu-libstdc++/${NDK_TOOLCHAIN_VERSION}/libs/${TARGET_ARCH} -Wl,-rpath=${ANDROID_NDK}/sources/cxx-stl/gnu-libstdc++/${NDK_TOOLCHAIN_VERSION}/libs/${TARGET_ARCH} -lgnustl_shared\" ;" > user-config.jam
300 ./b2 -q -d+2 --user-config=user-config.jam toolset=gcc variant=release link=shared threading=multi runtime-link=shared target-os=android --prefix=$PREFIX --layout=system install
301 cd ..
302
303 # Qt (needed for PulseView)
304 $WGET http://download.qt-project.org/official_releases/qt/${VER_QT%.*}/${VER_QT}/single/qt-everywhere-opensource-src-${VER_QT}.tar.gz
305 tar xfz qt-everywhere-opensource-src-${VER_QT}.tar.gz
306 cd qt-everywhere-opensource-src-${VER_QT}
307 patch -p1 < ../../android-qt.patch
308 ./configure --prefix="$PREFIX" -developer-build -xplatform android-g++ -nomake tests -nomake examples -android-sdk "$ANDROID_SDK" -android-ndk "$ANDROID_NDK" -android-ndk-host "$NDK_HOST" -android-arch "$TARGET_ARCH" -android-toolchain-version "$NDK_TOOLCHAIN_VERSION" -skip qttranslations -skip qtwebkit -skip qtserialport -skip qtwebkit-examples -skip qtlocation -skip qtconnectivity -opensource -confirm-license
309 make $PARALLEL
310 make install
311 cd ..
312
313 # sigrok-androidutils
314 $GIT_CLONE git://sigrok.org/sigrok-androidutils
315 cd sigrok-androidutils
316 ./autogen.sh
317 ./configure $C --with-android-sdk="${ANDROID_SDK}"
318 make $PARALLEL V=1
319 make install
320 cd ..
321
322 # PulseView
323 $GIT_CLONE git://sigrok.org/pulseview
324 cd pulseview
325 cmake $CM -DANDROID_STL_PATH=${ANDROID_NDK}/sources/cxx-stl .
326 make $PARALLEL VERBOSE=1
327 cd android
328 "${ANDROID_SDK}/tools/android" update project -p . -t android-14 -n PulseView
329 ant debug
330 cd ../..
331