]> sigrok.org Git - sigrok-util.git/blame - cross-compile/android/sigrok-cross-android
sigrok-cross-android: Set PKG_CONFIG_LIBDIR globally
[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
38VER_GETTEXT=0.18.2
b118df5f 39VER_ZLIB=1.2.8
85c9910a 40VER_PCRE=8.32
0832e7d6
UH
41VER_LIBFFI=3.0.11
42VER_GLIB=2.34.3
43VER_LIBZIP=0.10.1
44VER_LIBUSB=0.1.12
45VER_LIBFTDI=0.20
46
47SF_MIRROR=switch.dl.sourceforge.net
48
49# -----------------------------------------------------------------------------
50
51# We need to find tools in the toolchain and in the install directory.
52export PATH=$PREFIX/bin:$TOOLCHAIN/bin:$PATH
53
226830e4
MC
54# Tell pkg-config to only look for our cross-built stuff
55export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
56export -n PKG_CONFIG_PATH
57
0832e7d6
UH
58# Define some helper variables.
59C="--host=arm-linux-androideabi --prefix=$PREFIX"
0832e7d6
UH
60
61# Remove build directory contents (if any) and create a new build dir.
62rm -rf $BUILDDIR
63mkdir $BUILDDIR
64cd $BUILDDIR
65
66# Get the latest versions of config.guess/config.sub that know about Android.
67git clone git://git.savannah.gnu.org/config.git
68
69# -----------------------------------------------------------------------------
70
85b46172
MC
71# libiconv (needed for glib)
72wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
73tar xfz libiconv-$VER_LIBICONV.tar.gz
74cd libiconv-$VER_LIBICONV
75cp -f ../config/config.guess build-aux
76cp -f ../config/config.sub build-aux
77cp -f ../config/config.guess libcharset/build-aux
78cp -f ../config/config.sub libcharset/build-aux
79./configure $C --enable-shared
80make lib/localcharset.h
81cd libcharset
82make
83make install
84cd ../lib
85make
86make install
87cd ..
88test -d $PREFIX/include || mkdir $PREFIX/include
89cp include/iconv.h.inst $PREFIX/include/iconv.h
90cd ..
0832e7d6 91
87ea3974
MC
92# gettext (needed for glib)
93wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
94tar xfz gettext-$VER_GETTEXT.tar.gz
95cd gettext-$VER_GETTEXT
96./configure $C --enable-shared --disable-libasprintf
97cd gettext-runtime
98make
99make install
100cd ../..
0832e7d6
UH
101
102# zlib (needed for glib and libzip)
167cb16e
UH
103wget http://zlib.net/zlib-$VER_ZLIB.tar.gz
104tar xfvz zlib-$VER_ZLIB.tar.gz
105cd zlib-$VER_ZLIB
106# Note: zlib's configure doesn't understand --host, we need to pass $CC.
c28fee03
MC
107CC=arm-linux-androideabi-gcc ./configure --prefix=$PREFIX
108make
109make install
167cb16e 110cd ..
0832e7d6
UH
111
112# pcre (needed for glib)
85c9910a
UH
113wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
114tar xfvz pcre-$VER_PCRE.tar.gz
115cd pcre-$VER_PCRE
091ed535 116./configure $C --disable-cpp
c28fee03
MC
117make
118make install
85c9910a 119cd ..
0832e7d6
UH
120
121# libffi (needed for glib)
122wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
123tar xfz libffi-$VER_LIBFFI.tar.gz
124cd libffi-$VER_LIBFFI
c28fee03
MC
125./configure $C
126make
127make install
0832e7d6
UH
128cd ..
129
559be0ff 130# glib
f0e760bb 131wget https://github.com/djdeath/glib/archive/android.zip
589df790 132unzip -q android.zip
f0e760bb
MC
133cd glib-android
134./autogen.sh
559be0ff 135# Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
226830e4 136LDFLAGS=-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
137make
138make install
139cd ..
0832e7d6
UH
140
141# libzip
142wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
143tar xfz libzip-$VER_LIBZIP.tar.gz
144cd libzip-$VER_LIBZIP
145cp -f ../config/config.guess .
146cp -f ../config/config.sub .
c28fee03
MC
147./configure $C
148make
149make install
0832e7d6
UH
150cd ..
151
152# libusb-0.1 (not used directly, but needed for libftdi)
153wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
154tar xfz libusb-$VER_LIBUSB.tar.gz
155cd libusb-$VER_LIBUSB
156cp -f ../config/config.guess .
157cp -f ../config/config.sub .
c28fee03 158./configure $C
091ed535
MC
159# explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs
160make lib_LTLIBRARIES=libusb.la SUBDIRS=.
161make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
0832e7d6
UH
162cd ..
163
164# libftdi
165wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
166tar xfz libftdi-$VER_LIBFTDI.tar.gz
167cd libftdi-$VER_LIBFTDI
168cp -f ../config/config.guess .
169cp -f ../config/config.sub .
c28fee03
MC
170./configure $C
171make
172make install
0832e7d6
UH
173cd ..
174
c062d1dc
MC
175# libsigrok
176git clone git://sigrok.org/libsigrok
177cd libsigrok
178./autogen.sh
226830e4 179LDFLAGS=-L$PREFIX/lib CPPFLAGS="-I$PREFIX/include -I$PREFIX/lib/libzip/include" ./configure $C --disable-alsa --disable-link-mso19 --disable-kecheng-kc-330b
c062d1dc
MC
180make
181make install
182cd ..