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