]> sigrok.org Git - sigrok-util.git/blame - 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
CommitLineData
0832e7d6
UH
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
c28fee03
MC
22set -e
23
0832e7d6
UH
24# The path where your Android toolchain directory is located.
25TOOLCHAIN=$HOME/android/android-arm-toolchain
e2bb3ab1
UH
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!
31TOOLCHAIN_TRIPLET=arm-linux-androideabi
32# TOOLCHAIN_TRIPLET=mipsel-linux-android
33# TOOLCHAIN_TRIPLET=i686-linux-android
0832e7d6
UH
34
35# The path where the cross-compiled packages will be installed.
36PREFIX=$HOME/sr_android
37
38# The path where to download files to and where to build packages.
07947dda 39BUILDDIR=./build
0832e7d6 40
819eb05b
UH
41# Edit this to enable/disable/modify parallel compiles.
42PARALLEL="-j 2"
43
0832e7d6
UH
44# You usually don't need to change anything below this line.
45
46# -----------------------------------------------------------------------------
47
48VER_LIBICONV=1.14
5036134a 49VER_GETTEXT=0.18.3
b118df5f 50VER_ZLIB=1.2.8
5036134a
UH
51VER_PCRE=8.33
52VER_LIBFFI=3.0.13
f7b8aa73
UH
53VER_GLIB=2.38.2
54VER_GLIB_SHORT=2.38
5036134a 55VER_LIBZIP=0.11.1
7966c37c 56VER_LIBFTDI1=1.1
6907ee7e 57VER_LIBUSBX=1.0.17
5451bfe2 58VER_PYTHON=3.3.3
0832e7d6
UH
59
60SF_MIRROR=switch.dl.sourceforge.net
61
ec49447e 62WGET="wget --quiet"
a51ca6bd 63GIT_CLONE="git clone --depth=1"
ec49447e 64
7966c37c
MC
65case "$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;;
70esac
71
0832e7d6
UH
72# -----------------------------------------------------------------------------
73
2e353a08
ML
74# Remove build directory contents (if any) and create a new build dir.
75rm -rf $BUILDDIR
76mkdir $BUILDDIR
77cd $BUILDDIR
78
79# Build host Python before we start messing with the environment.
ec49447e 80$WGET http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz
5451bfe2
ML
81tar xJf Python-$VER_PYTHON.tar.xz
82cd Python-$VER_PYTHON
2e353a08 83./configure
819eb05b
UH
84make python $PARALLEL
85make Parser/pgen $PARALLEL
2e353a08
ML
86mv python hostpython
87mv Parser/pgen Parser/hostpgen
88cd ..
89
90# -----------------------------------------------------------------------------
91
92# We need to find tools in the toolchain.
93export PATH=$TOOLCHAIN/bin:$PATH
0832e7d6 94
02c87af2 95# Tell pkg-config to only look for our cross-built stuff.
226830e4
MC
96export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
97export -n PKG_CONFIG_PATH
98
0832e7d6 99# Define some helper variables.
e2bb3ab1 100C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX"
7966c37c 101CM="-Wno-dev -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake -DANDROID_ABI=${TARGET_ARCH} -DCMAKE_INSTALL_PREFIX=${PREFIX} -DANDROID_STANDALONE_TOOLCHAIN=${TOOLCHAIN}"
0832e7d6 102
0832e7d6 103# Get the latest versions of config.guess/config.sub that know about Android.
a51ca6bd 104$GIT_CLONE git://git.savannah.gnu.org/config.git
0832e7d6 105
7966c37c
MC
106# Get a toolchain for cmake that knows about Android
107wget https://android-cmake.googlecode.com/hg/toolchain/android.toolchain.cmake
108patch < ../android.toolchain.cmake.patch android.toolchain.cmake
109
0832e7d6
UH
110# -----------------------------------------------------------------------------
111
f7b8aa73
UH
112# Python (needed for libsigrokdecode)
113cd Python-$VER_PYTHON
114make distclean
115autoreconf
116patch -p1 < ../../Python-$VER_PYTHON.patch
117ac_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
819eb05b 118make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen install $PARALLEL
f7b8aa73
UH
119cd ..
120
85b46172 121# libiconv (needed for glib)
ec49447e 122$WGET http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
85b46172
MC
123tar xfz libiconv-$VER_LIBICONV.tar.gz
124cd libiconv-$VER_LIBICONV
125cp -f ../config/config.guess build-aux
126cp -f ../config/config.sub build-aux
127cp -f ../config/config.guess libcharset/build-aux
128cp -f ../config/config.sub libcharset/build-aux
129./configure $C --enable-shared
130make lib/localcharset.h
131cd libcharset
819eb05b 132make $PARALLEL
85b46172
MC
133make install
134cd ../lib
819eb05b 135make $PARALLEL
85b46172
MC
136make install
137cd ..
138test -d $PREFIX/include || mkdir $PREFIX/include
139cp include/iconv.h.inst $PREFIX/include/iconv.h
140cd ..
0832e7d6 141
87ea3974 142# gettext (needed for glib)
ec49447e 143$WGET http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
87ea3974
MC
144tar xfz gettext-$VER_GETTEXT.tar.gz
145cd gettext-$VER_GETTEXT
146./configure $C --enable-shared --disable-libasprintf
147cd gettext-runtime
819eb05b 148make $PARALLEL
87ea3974
MC
149make install
150cd ../..
0832e7d6
UH
151
152# zlib (needed for glib and libzip)
ec49447e 153$WGET http://zlib.net/zlib-$VER_ZLIB.tar.gz
167cb16e
UH
154tar xfvz zlib-$VER_ZLIB.tar.gz
155cd zlib-$VER_ZLIB
156# Note: zlib's configure doesn't understand --host, we need to pass $CC.
e2bb3ab1 157CC=$TOOLCHAIN_TRIPLET-gcc ./configure --prefix=$PREFIX
819eb05b 158make $PARALLEL
c28fee03 159make install
167cb16e 160cd ..
0832e7d6
UH
161
162# pcre (needed for glib)
ec49447e 163$WGET ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
85c9910a
UH
164tar xfvz pcre-$VER_PCRE.tar.gz
165cd pcre-$VER_PCRE
091ed535 166./configure $C --disable-cpp
819eb05b 167make $PARALLEL
c28fee03 168make install
85c9910a 169cd ..
0832e7d6
UH
170
171# libffi (needed for glib)
ec49447e 172$WGET ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
0832e7d6
UH
173tar xfz libffi-$VER_LIBFFI.tar.gz
174cd libffi-$VER_LIBFFI
c28fee03 175./configure $C
819eb05b 176make $PARALLEL
c28fee03 177make install
0832e7d6
UH
178cd ..
179
559be0ff 180# glib
ec49447e 181$WGET http://ftp.gnome.org/pub/gnome/sources/glib/$VER_GLIB_SHORT/glib-$VER_GLIB.tar.xz
f7b8aa73
UH
182tar xJf glib-$VER_GLIB.tar.xz
183cd glib-$VER_GLIB
f0e760bb 184./autogen.sh
559be0ff 185# Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
e2bb3ab1 186LDFLAGS=-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
819eb05b 187make $PARALLEL
f0e760bb
MC
188make install
189cd ..
0832e7d6
UH
190
191# libzip
ec49447e 192$WGET http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
0832e7d6
UH
193tar xfz libzip-$VER_LIBZIP.tar.gz
194cd libzip-$VER_LIBZIP
195cp -f ../config/config.guess .
196cp -f ../config/config.sub .
c28fee03 197./configure $C
819eb05b 198make $PARALLEL
c28fee03 199make install
0832e7d6
UH
200cd ..
201
13b2dfdc 202# libusb-1.0
ec49447e 203$WGET http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2
6907ee7e
MC
204tar xfj libusbx-$VER_LIBUSBX.tar.bz2
205cd libusbx-$VER_LIBUSBX
c09c85b3 206patch -p1 < ../../libusb-1.0.patch
6907ee7e 207./configure $C --disable-udev
819eb05b 208make $PARALLEL
13b2dfdc
MC
209make install
210cd ..
211
7966c37c
MC
212# libftdi1
213$WGET http://www.intra2net.com/en/developer/libftdi/download/libftdi1-$VER_LIBFTDI1.tar.bz2
214tar xfj libftdi1-$VER_LIBFTDI1.tar.bz2
215cd libftdi1-$VER_LIBFTDI1
216cmake $CM .
217make $PARALLEL
218make install
219cd ..
220
900a8684 221# libserialport
a51ca6bd 222$GIT_CLONE git://sigrok.org/libserialport
900a8684
ML
223cd libserialport
224./autogen.sh
6cdef103 225./configure $C
83b801db 226make $PARALLEL V=1
900a8684
ML
227make install
228cd ..
229
c062d1dc 230# libsigrok
a51ca6bd 231$GIT_CLONE git://sigrok.org/libsigrok
c062d1dc
MC
232cd libsigrok
233./autogen.sh
2475da72 234./configure $C
83b801db 235make $PARALLEL V=1
c062d1dc
MC
236make install
237cd ..
02c87af2 238
2fbea156 239# libsigrokdecode
a51ca6bd 240$GIT_CLONE git://sigrok.org/libsigrokdecode
2fbea156
ML
241cd libsigrokdecode
242./autogen.sh
243./configure $C
83b801db 244make $PARALLEL V=1
2fbea156
ML
245make install
246cd ..
247
248# sigrok-cli
a51ca6bd 249$GIT_CLONE git://sigrok.org/sigrok-cli
2fbea156
ML
250cd sigrok-cli
251./autogen.sh
252./configure $C
83b801db 253make $PARALLEL V=1
2fbea156
ML
254make install
255cd ..
819eb05b 256