]> sigrok.org Git - sigrok-util.git/blob - cross-compile/android/sigrok-cross-android
Add Android cross-compile helper script.
[sigrok-util.git] / cross-compile / android / sigrok-cross-android
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
22 # The path where your Android toolchain directory is located.
23 TOOLCHAIN=$HOME/android/android-arm-toolchain
24
25 # The path where the cross-compiled packages will be installed.
26 PREFIX=$HOME/sr_android
27
28 # The path where to download files to and where to build packages.
29 BUILDDIR=./sr_android_build
30
31 # You usually don't need to change anything below this line.
32
33 # -----------------------------------------------------------------------------
34
35 VER_LIBICONV=1.14
36 VER_GETTEXT=0.18.2
37 VER_LIBFFI=3.0.11
38 VER_GLIB=2.34.3
39 VER_LIBZIP=0.10.1
40 VER_LIBUSB=0.1.12
41 VER_LIBFTDI=0.20
42
43 SF_MIRROR=switch.dl.sourceforge.net
44
45 # -----------------------------------------------------------------------------
46
47 # We need to find tools in the toolchain and in the install directory.
48 export PATH=$PREFIX/bin:$TOOLCHAIN/bin:$PATH
49
50 # Define some helper variables.
51 C="--host=arm-linux-androideabi --prefix=$PREFIX"
52 P="$PREFIX/lib/pkgconfig"
53
54 # Remove build directory contents (if any) and create a new build dir.
55 rm -rf $BUILDDIR
56 mkdir $BUILDDIR
57 cd $BUILDDIR
58
59 # Get the latest versions of config.guess/config.sub that know about Android.
60 git clone git://git.savannah.gnu.org/config.git
61
62 # -----------------------------------------------------------------------------
63
64 ## # TODO: Doesn't build yet.
65 ## # libiconv (needed for glib)
66 ## wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz
67 ## tar xfz libiconv-$VER_LIBICONV.tar.gz
68 ## cd libiconv-$VER_LIBICONV
69 ## cp -f ../config/config.guess build-aux
70 ## cp -f ../config/config.sub build-aux
71 ## cp -f ../config/config.guess libcharset/build-aux
72 ## cp -f ../config/config.sub libcharset/build-aux
73 ## ./configure $C && make && make install
74 ## cd ..
75
76 ## # TODO: Needs libiconv
77 ## # gettext (needed for glib)
78 ## wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz
79 ## tar xfz gettext-$VER_GETTEXT.tar.gz
80 ## cd gettext-$VER_GETTEXT
81 ## ./configure $C && make && make install
82 ## cd ..
83
84 # zlib (needed for glib and libzip)
85 # TODO
86
87 # pcre (needed for glib)
88 # TODO
89
90 # libffi (needed for glib)
91 wget ftp://sourceware.org/pub/libffi/libffi-$VER_LIBFFI.tar.gz
92 tar xfz libffi-$VER_LIBFFI.tar.gz
93 cd libffi-$VER_LIBFFI
94 ./configure $C && make && make install
95 cd ..
96
97 ## # TODO: Not all build-dependencies build, yet.
98 ## # glib
99 ## wget ftp://ftp.gnome.org/pub/gnome/sources/glib/2.34/glib-$VER_GLIB.tar.xz
100 ## tar xfJ glib-$VER_GLIB.tar.xz
101 ## cd glib-$VER_GLIB
102 ## ./configure $C && make && make install
103 ## cd ..
104
105 # libzip
106 wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz
107 tar xfz libzip-$VER_LIBZIP.tar.gz
108 cd libzip-$VER_LIBZIP
109 cp -f ../config/config.guess .
110 cp -f ../config/config.sub .
111 ./configure $C && make && make install
112 cd ..
113
114 # libusb-0.1 (not used directly, but needed for libftdi)
115 wget http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz
116 tar xfz libusb-$VER_LIBUSB.tar.gz
117 cd libusb-$VER_LIBUSB
118 cp -f ../config/config.guess .
119 cp -f ../config/config.sub .
120 ./configure $C && make && make install
121 cd ..
122
123 # libftdi
124 wget http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz
125 tar xfz libftdi-$VER_LIBFTDI.tar.gz
126 cd libftdi-$VER_LIBFTDI
127 cp -f ../config/config.guess .
128 cp -f ../config/config.sub .
129 ./configure $C && make && make install
130 cd ..
131