]> sigrok.org Git - sigrok-util.git/blame - cross-compile/android/sigrok-cross-android
sigrok-cross-android: libsigrok: Drop --disable-alsa.
[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
26
27# The path where the cross-compiled packages will be installed.
28PREFIX=$HOME/sr_android
29
30# The path where to download files to and where to build packages.
31BUILDDIR=./sr_android_build
32
33# You usually don't need to change anything below this line.
34
35# -----------------------------------------------------------------------------
36
37VER_LIBICONV=1.14
5036134a 38VER_GETTEXT=0.18.3
b118df5f 39VER_ZLIB=1.2.8
5036134a
UH
40VER_PCRE=8.33
41VER_LIBFFI=3.0.13
0832e7d6 42VER_GLIB=2.34.3
5036134a 43VER_LIBZIP=0.11.1
0832e7d6
UH
44VER_LIBUSB=0.1.12
45VER_LIBFTDI=0.20
13b2dfdc 46VER_LIBUSB_1_0=1.0.9
0832e7d6
UH
47
48SF_MIRROR=switch.dl.sourceforge.net
49
50# -----------------------------------------------------------------------------
51
52# We need to find tools in the toolchain and in the install directory.
53export PATH=$PREFIX/bin:$TOOLCHAIN/bin:$PATH
54
02c87af2 55# Tell pkg-config to only look for our cross-built stuff.
226830e4
MC
56export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
57export -n PKG_CONFIG_PATH
58
0832e7d6
UH
59# Define some helper variables.
60C="--host=arm-linux-androideabi --prefix=$PREFIX"
0832e7d6 61
02c87af2 62# Remember the directory we're in.
13b2dfdc
MC
63case "$0" in
64 /*) TOP=$(dirname "$0");;
65 *) TOP=$(dirname "$(pwd)"/"$0");;
66esac
67
0832e7d6
UH
68# Remove build directory contents (if any) and create a new build dir.
69rm -rf $BUILDDIR
70mkdir $BUILDDIR
71cd $BUILDDIR
72
73# Get the latest versions of config.guess/config.sub that know about Android.
74git clone git://git.savannah.gnu.org/config.git
75
76# -----------------------------------------------------------------------------
77
85b46172
MC
78# libiconv (needed for glib)
79wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
80tar xfz libiconv-$VER_LIBICONV.tar.gz
81cd libiconv-$VER_LIBICONV
82cp -f ../config/config.guess build-aux
83cp -f ../config/config.sub build-aux
84cp -f ../config/config.guess libcharset/build-aux
85cp -f ../config/config.sub libcharset/build-aux
86./configure $C --enable-shared
87make lib/localcharset.h
88cd libcharset
89make
90make install
91cd ../lib
92make
93make install
94cd ..
95test -d $PREFIX/include || mkdir $PREFIX/include
96cp include/iconv.h.inst $PREFIX/include/iconv.h
97cd ..
0832e7d6 98
87ea3974
MC
99# gettext (needed for glib)
100wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
101tar xfz gettext-$VER_GETTEXT.tar.gz
102cd gettext-$VER_GETTEXT
103./configure $C --enable-shared --disable-libasprintf
104cd gettext-runtime
105make
106make install
107cd ../..
0832e7d6
UH
108
109# zlib (needed for glib and libzip)
167cb16e
UH
110wget http://zlib.net/zlib-$VER_ZLIB.tar.gz
111tar xfvz zlib-$VER_ZLIB.tar.gz
112cd zlib-$VER_ZLIB
113# Note: zlib's configure doesn't understand --host, we need to pass $CC.
c28fee03
MC
114CC=arm-linux-androideabi-gcc ./configure --prefix=$PREFIX
115make
116make install
167cb16e 117cd ..
0832e7d6
UH
118
119# pcre (needed for glib)
85c9910a
UH
120wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
121tar xfvz pcre-$VER_PCRE.tar.gz
122cd pcre-$VER_PCRE
091ed535 123./configure $C --disable-cpp
c28fee03
MC
124make
125make install
85c9910a 126cd ..
0832e7d6
UH
127
128# libffi (needed for glib)
129wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
130tar xfz libffi-$VER_LIBFFI.tar.gz
131cd libffi-$VER_LIBFFI
c28fee03
MC
132./configure $C
133make
134make install
0832e7d6
UH
135cd ..
136
559be0ff 137# glib
f0e760bb 138wget https://github.com/djdeath/glib/archive/android.zip
589df790 139unzip -q android.zip
f0e760bb
MC
140cd glib-android
141./autogen.sh
559be0ff 142# Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
226830e4 143LDFLAGS=-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 --disable-modular-tests
f0e760bb
MC
144make
145make install
146cd ..
0832e7d6
UH
147
148# libzip
149wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
150tar xfz libzip-$VER_LIBZIP.tar.gz
151cd libzip-$VER_LIBZIP
152cp -f ../config/config.guess .
153cp -f ../config/config.sub .
c28fee03
MC
154./configure $C
155make
156make install
0832e7d6
UH
157cd ..
158
159# libusb-0.1 (not used directly, but needed for libftdi)
160wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
161tar xfz libusb-$VER_LIBUSB.tar.gz
162cd libusb-$VER_LIBUSB
163cp -f ../config/config.guess .
164cp -f ../config/config.sub .
c28fee03 165./configure $C
02c87af2 166# Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs.
091ed535
MC
167make lib_LTLIBRARIES=libusb.la SUBDIRS=.
168make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
0832e7d6
UH
169cd ..
170
171# libftdi
172wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
173tar xfz libftdi-$VER_LIBFTDI.tar.gz
174cd libftdi-$VER_LIBFTDI
175cp -f ../config/config.guess .
176cp -f ../config/config.sub .
c28fee03
MC
177./configure $C
178make
179make install
0832e7d6
UH
180cd ..
181
13b2dfdc
MC
182# libusb-1.0
183wget http://$SF_MIRROR/project/libusb/libusb-1.0/libusb-$VER_LIBUSB_1_0/libusb-$VER_LIBUSB_1_0.tar.bz2
184tar xfj libusb-$VER_LIBUSB_1_0.tar.bz2
185cd libusb-$VER_LIBUSB_1_0
186patch -p1 < $TOP/libusb-1.0.patch
187./configure $C
188make
189make install
190cd ..
191
c062d1dc
MC
192# libsigrok
193git clone git://sigrok.org/libsigrok
194cd libsigrok
195./autogen.sh
2475da72 196./configure $C
c062d1dc
MC
197make
198make install
199cd ..
02c87af2 200