]> sigrok.org Git - sigrok-util.git/blame - cross-compile/android/sigrok-cross-android
sigrok-cross-android: Fix iconv build
[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
54# Define some helper variables.
55C="--host=arm-linux-androideabi --prefix=$PREFIX"
56P="$PREFIX/lib/pkgconfig"
57
58# Remove build directory contents (if any) and create a new build dir.
59rm -rf $BUILDDIR
60mkdir $BUILDDIR
61cd $BUILDDIR
62
63# Get the latest versions of config.guess/config.sub that know about Android.
64git clone git://git.savannah.gnu.org/config.git
65
66# -----------------------------------------------------------------------------
67
85b46172
MC
68# libiconv (needed for glib)
69wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
70tar xfz libiconv-$VER_LIBICONV.tar.gz
71cd libiconv-$VER_LIBICONV
72cp -f ../config/config.guess build-aux
73cp -f ../config/config.sub build-aux
74cp -f ../config/config.guess libcharset/build-aux
75cp -f ../config/config.sub libcharset/build-aux
76./configure $C --enable-shared
77make lib/localcharset.h
78cd libcharset
79make
80make install
81cd ../lib
82make
83make install
84cd ..
85test -d $PREFIX/include || mkdir $PREFIX/include
86cp include/iconv.h.inst $PREFIX/include/iconv.h
87cd ..
0832e7d6
UH
88
89## # TODO: Needs libiconv
90## # gettext (needed for glib)
91## wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
92## tar xfz gettext-$VER_GETTEXT.tar.gz
93## cd gettext-$VER_GETTEXT
c28fee03
MC
94## ./configure $C
95## make
96## make install
0832e7d6
UH
97## cd ..
98
99# zlib (needed for glib and libzip)
167cb16e
UH
100wget http://zlib.net/zlib-$VER_ZLIB.tar.gz
101tar xfvz zlib-$VER_ZLIB.tar.gz
102cd zlib-$VER_ZLIB
103# Note: zlib's configure doesn't understand --host, we need to pass $CC.
c28fee03
MC
104CC=arm-linux-androideabi-gcc ./configure --prefix=$PREFIX
105make
106make install
167cb16e 107cd ..
0832e7d6
UH
108
109# pcre (needed for glib)
85c9910a
UH
110wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
111tar xfvz pcre-$VER_PCRE.tar.gz
112cd pcre-$VER_PCRE
091ed535 113./configure $C --disable-cpp
c28fee03
MC
114make
115make install
85c9910a 116cd ..
0832e7d6
UH
117
118# libffi (needed for glib)
119wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
120tar xfz libffi-$VER_LIBFFI.tar.gz
121cd libffi-$VER_LIBFFI
c28fee03
MC
122./configure $C
123make
124make install
0832e7d6
UH
125cd ..
126
127## # TODO: Not all build-dependencies build, yet.
128## # glib
129## wget ftp://ftp.gnome.org/pub/gnome/sources/glib/2.34/glib-$VER_GLIB.tar.xz
130## tar xfJ glib-$VER_GLIB.tar.xz
131## cd glib-$VER_GLIB
c28fee03
MC
132## ./configure $C
133## make
134## make install
0832e7d6
UH
135## cd ..
136
137# libzip
138wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
139tar xfz libzip-$VER_LIBZIP.tar.gz
140cd libzip-$VER_LIBZIP
141cp -f ../config/config.guess .
142cp -f ../config/config.sub .
c28fee03
MC
143./configure $C
144make
145make install
0832e7d6
UH
146cd ..
147
148# libusb-0.1 (not used directly, but needed for libftdi)
149wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
150tar xfz libusb-$VER_LIBUSB.tar.gz
151cd libusb-$VER_LIBUSB
152cp -f ../config/config.guess .
153cp -f ../config/config.sub .
c28fee03 154./configure $C
091ed535
MC
155# explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs
156make lib_LTLIBRARIES=libusb.la SUBDIRS=.
157make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
0832e7d6
UH
158cd ..
159
160# libftdi
161wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
162tar xfz libftdi-$VER_LIBFTDI.tar.gz
163cd libftdi-$VER_LIBFTDI
164cp -f ../config/config.guess .
165cp -f ../config/config.sub .
c28fee03
MC
166./configure $C
167make
168make install
0832e7d6
UH
169cd ..
170