]> sigrok.org Git - sigrok-util.git/blame - cross-compile/android/sigrok-cross-android
sigrok-cross-android: Drop $TOP usage for now.
[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.
c548351b 59wget http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz
5451bfe2
ML
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
0832e7d6
UH
81# Get the latest versions of config.guess/config.sub that know about Android.
82git clone git://git.savannah.gnu.org/config.git
83
84# -----------------------------------------------------------------------------
85
85b46172
MC
86# libiconv (needed for glib)
87wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
88tar xfz libiconv-$VER_LIBICONV.tar.gz
89cd libiconv-$VER_LIBICONV
90cp -f ../config/config.guess build-aux
91cp -f ../config/config.sub build-aux
92cp -f ../config/config.guess libcharset/build-aux
93cp -f ../config/config.sub libcharset/build-aux
94./configure $C --enable-shared
95make lib/localcharset.h
96cd libcharset
97make
98make install
99cd ../lib
100make
101make install
102cd ..
103test -d $PREFIX/include || mkdir $PREFIX/include
104cp include/iconv.h.inst $PREFIX/include/iconv.h
105cd ..
0832e7d6 106
87ea3974
MC
107# gettext (needed for glib)
108wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
109tar xfz gettext-$VER_GETTEXT.tar.gz
110cd gettext-$VER_GETTEXT
111./configure $C --enable-shared --disable-libasprintf
112cd gettext-runtime
113make
114make install
115cd ../..
0832e7d6
UH
116
117# zlib (needed for glib and libzip)
167cb16e
UH
118wget http://zlib.net/zlib-$VER_ZLIB.tar.gz
119tar xfvz zlib-$VER_ZLIB.tar.gz
120cd zlib-$VER_ZLIB
121# Note: zlib's configure doesn't understand --host, we need to pass $CC.
c28fee03
MC
122CC=arm-linux-androideabi-gcc ./configure --prefix=$PREFIX
123make
124make install
167cb16e 125cd ..
0832e7d6
UH
126
127# pcre (needed for glib)
85c9910a
UH
128wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$VER_PCRE.tar.gz
129tar xfvz pcre-$VER_PCRE.tar.gz
130cd pcre-$VER_PCRE
091ed535 131./configure $C --disable-cpp
c28fee03
MC
132make
133make install
85c9910a 134cd ..
0832e7d6
UH
135
136# libffi (needed for glib)
137wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
138tar xfz libffi-$VER_LIBFFI.tar.gz
139cd libffi-$VER_LIBFFI
c28fee03
MC
140./configure $C
141make
142make install
0832e7d6
UH
143cd ..
144
559be0ff 145# glib
96a10f86
ML
146wget http://ftp.gnome.org/pub/gnome/sources/glib/2.38/glib-2.38.2.tar.xz
147tar xJf glib-2.38.2.tar.xz
148cd glib-2.38.2
f0e760bb 149./autogen.sh
559be0ff 150# Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config.
96a10f86 151LDFLAGS=-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
152make
153make install
154cd ..
0832e7d6
UH
155
156# libzip
157wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
158tar xfz libzip-$VER_LIBZIP.tar.gz
159cd libzip-$VER_LIBZIP
160cp -f ../config/config.guess .
161cp -f ../config/config.sub .
c28fee03
MC
162./configure $C
163make
164make install
0832e7d6
UH
165cd ..
166
167# libusb-0.1 (not used directly, but needed for libftdi)
168wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
169tar xfz libusb-$VER_LIBUSB.tar.gz
170cd libusb-$VER_LIBUSB
171cp -f ../config/config.guess .
172cp -f ../config/config.sub .
c28fee03 173./configure $C
02c87af2 174# Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs.
091ed535
MC
175make lib_LTLIBRARIES=libusb.la SUBDIRS=.
176make lib_LTLIBRARIES=libusb.la SUBDIRS=. install
0832e7d6
UH
177cd ..
178
179# libftdi
180wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
181tar xfz libftdi-$VER_LIBFTDI.tar.gz
182cd libftdi-$VER_LIBFTDI
183cp -f ../config/config.guess .
184cp -f ../config/config.sub .
147100f0
UH
185# libftdi needs to find libusb-config which is installed in $PREFIX/bin.
186PATH=$PREFIX/bin:$PATH ./configure $C
c28fee03
MC
187make
188make install
0832e7d6
UH
189cd ..
190
13b2dfdc
MC
191# libusb-1.0
192wget http://$SF_MIRROR/project/libusb/libusb-1.0/libusb-$VER_LIBUSB_1_0/libusb-$VER_LIBUSB_1_0.tar.bz2
193tar xfj libusb-$VER_LIBUSB_1_0.tar.bz2
194cd libusb-$VER_LIBUSB_1_0
c09c85b3 195patch -p1 < ../../libusb-1.0.patch
13b2dfdc
MC
196./configure $C
197make
198make install
199cd ..
200
900a8684
ML
201# libserialport
202git clone git://sigrok.org/libserialport
203cd libserialport
204./autogen.sh
205./configure $C --without-libudev
206make
207make install
208cd ..
209
c062d1dc
MC
210# libsigrok
211git clone git://sigrok.org/libsigrok
212cd libsigrok
213./autogen.sh
2475da72 214./configure $C
c062d1dc
MC
215make
216make install
217cd ..
02c87af2 218
2e353a08 219# Python
5451bfe2 220cd Python-$VER_PYTHON
2e353a08
ML
221make distclean
222autoreconf
5451bfe2 223patch -p1 < ../../Python-$VER_PYTHON.patch
2e353a08
ML
224ac_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
225make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen install
226cd ..
2fbea156
ML
227
228# libsigrokdecode
229git clone git://sigrok.org/libsigrokdecode
230cd libsigrokdecode
231./autogen.sh
232./configure $C
233make
234make install
235cd ..
236
237# sigrok-cli
238git clone git://sigrok.org/sigrok-cli
239cd sigrok-cli
240./autogen.sh
241./configure $C
242make
243make install
244cd ..