]> sigrok.org Git - sigrok-util.git/blame - cross-compile/android/sigrok-cross-android
sigrok-cross-android: Build libserialport.
[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
2e353a08
ML
52# Remove build directory contents (if any) and create a new build dir.
53rm -rf $BUILDDIR
54mkdir $BUILDDIR
55cd $BUILDDIR
56
57# Build host Python before we start messing with the environment.
58wget http://python.org/ftp/python/3.3.3/Python-3.3.3.tar.xz
59tar xJf Python-3.3.3.tar.xz
60cd Python-3.3.3
61./configure
62make python
63make Parser/pgen
64mv python hostpython
65mv Parser/pgen Parser/hostpgen
66cd ..
67
68# -----------------------------------------------------------------------------
69
70# We need to find tools in the toolchain.
71export PATH=$TOOLCHAIN/bin:$PATH
0832e7d6 72
02c87af2 73# Tell pkg-config to only look for our cross-built stuff.
226830e4
MC
74export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
75export -n PKG_CONFIG_PATH
76
0832e7d6
UH
77# Define some helper variables.
78C="--host=arm-linux-androideabi --prefix=$PREFIX"
0832e7d6 79
02c87af2 80# Remember the directory we're in.
13b2dfdc
MC
81case "$0" in
82 /*) TOP=$(dirname "$0");;
83 *) TOP=$(dirname "$(pwd)"/"$0");;
84esac
85
0832e7d6
UH
86# Get the latest versions of config.guess/config.sub that know about Android.
87git clone git://git.savannah.gnu.org/config.git
88
89# -----------------------------------------------------------------------------
90
85b46172
MC
91# libiconv (needed for glib)
92wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
93tar xfz libiconv-$VER_LIBICONV.tar.gz
94cd libiconv-$VER_LIBICONV
95cp -f ../config/config.guess build-aux
96cp -f ../config/config.sub build-aux
97cp -f ../config/config.guess libcharset/build-aux
98cp -f ../config/config.sub libcharset/build-aux
99./configure $C --enable-shared
100make lib/localcharset.h
101cd libcharset
102make
103make install
104cd ../lib
105make
106make install
107cd ..
108test -d $PREFIX/include || mkdir $PREFIX/include
109cp include/iconv.h.inst $PREFIX/include/iconv.h
110cd ..
0832e7d6 111
87ea3974
MC
112# gettext (needed for glib)
113wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
114tar xfz gettext-$VER_GETTEXT.tar.gz
115cd gettext-$VER_GETTEXT
116./configure $C --enable-shared --disable-libasprintf
117cd gettext-runtime
118make
119make install
120cd ../..
0832e7d6
UH
121
122# zlib (needed for glib and libzip)
167cb16e
UH
123wget http://zlib.net/zlib-$VER_ZLIB.tar.gz
124tar xfvz zlib-$VER_ZLIB.tar.gz
125cd zlib-$VER_ZLIB
126# Note: zlib's configure doesn't understand --host, we need to pass $CC.
c28fee03
MC
127CC=arm-linux-androideabi-gcc ./configure --prefix=$PREFIX
128make
129make install
167cb16e 130cd ..
0832e7d6
UH
131
132# pcre (needed for glib)
85c9910a
UH
133wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
134tar xfvz pcre-$VER_PCRE.tar.gz
135cd pcre-$VER_PCRE
091ed535 136./configure $C --disable-cpp
c28fee03
MC
137make
138make install
85c9910a 139cd ..
0832e7d6
UH
140
141# libffi (needed for glib)
142wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
143tar xfz libffi-$VER_LIBFFI.tar.gz
144cd libffi-$VER_LIBFFI
c28fee03
MC
145./configure $C
146make
147make install
0832e7d6
UH
148cd ..
149
559be0ff 150# glib
96a10f86
ML
151wget http://ftp.gnome.org/pub/gnome/sources/glib/2.38/glib-2.38.2.tar.xz
152tar xJf glib-2.38.2.tar.xz
153cd glib-2.38.2
f0e760bb 154./autogen.sh
559be0ff 155# Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
96a10f86 156LDFLAGS=-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
f0e760bb
MC
157make
158make install
159cd ..
0832e7d6
UH
160
161# libzip
162wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
163tar xfz libzip-$VER_LIBZIP.tar.gz
164cd libzip-$VER_LIBZIP
165cp -f ../config/config.guess .
166cp -f ../config/config.sub .
c28fee03
MC
167./configure $C
168make
169make install
0832e7d6
UH
170cd ..
171
172# libusb-0.1 (not used directly, but needed for libftdi)
173wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
174tar xfz libusb-$VER_LIBUSB.tar.gz
175cd libusb-$VER_LIBUSB
176cp -f ../config/config.guess .
177cp -f ../config/config.sub .
c28fee03 178./configure $C
02c87af2 179# Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs.
091ed535
MC
180make lib_LTLIBRARIES=libusb.la SUBDIRS=.
181make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
0832e7d6
UH
182cd ..
183
184# libftdi
185wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
186tar xfz libftdi-$VER_LIBFTDI.tar.gz
187cd libftdi-$VER_LIBFTDI
188cp -f ../config/config.guess .
189cp -f ../config/config.sub .
c28fee03
MC
190./configure $C
191make
192make install
0832e7d6
UH
193cd ..
194
13b2dfdc
MC
195# libusb-1.0
196wget http://$SF_MIRROR/project/libusb/libusb-1.0/libusb-$VER_LIBUSB_1_0/libusb-$VER_LIBUSB_1_0.tar.bz2
197tar xfj libusb-$VER_LIBUSB_1_0.tar.bz2
198cd libusb-$VER_LIBUSB_1_0
199patch -p1 < $TOP/libusb-1.0.patch
200./configure $C
201make
202make install
203cd ..
204
900a8684
ML
205# libserialport
206git clone git://sigrok.org/libserialport
207cd libserialport
208./autogen.sh
209./configure $C --without-libudev
210make
211make install
212cd ..
213
c062d1dc
MC
214# libsigrok
215git clone git://sigrok.org/libsigrok
216cd libsigrok
217./autogen.sh
2475da72 218./configure $C
c062d1dc
MC
219make
220make install
221cd ..
02c87af2 222
2e353a08
ML
223# Python
224cd Python-3.3.3
225make distclean
226autoreconf
227patch -p1 < ../../Python-3.3.3.patch
228ac_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
229make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen install
230cd ..
2fbea156
ML
231
232# libsigrokdecode
233git clone git://sigrok.org/libsigrokdecode
234cd libsigrokdecode
235./autogen.sh
236./configure $C
237make
238make install
239cd ..
240
241# sigrok-cli
242git clone git://sigrok.org/sigrok-cli
243cd sigrok-cli
244./autogen.sh
245./configure $C
246make
247make install
248cd ..