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