X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=cross-compile%2Fandroid%2Fsigrok-cross-android;h=86a64b75793c2fac3865af3c58e177cadf32a048;hp=9c67c616c2295fdd20abf37a33a0f7b5a6029044;hb=f7b8aa73b0b2b3539216d14f27f744425cb5e3bd;hpb=85b461722e479e5f8a7a4ddf62dd847e31fa6766 diff --git a/cross-compile/android/sigrok-cross-android b/cross-compile/android/sigrok-cross-android index 9c67c61..86a64b7 100755 --- a/cross-compile/android/sigrok-cross-android +++ b/cross-compile/android/sigrok-cross-android @@ -23,6 +23,14 @@ set -e # The path where your Android toolchain directory is located. TOOLCHAIN=$HOME/android/android-arm-toolchain +# TOOLCHAIN=$HOME/android/android-mipsel-toolchain +# TOOLCHAIN=$HOME/android/android-i686-toolchain + +# Select which Android toolchain to use. +# Don't forget to also adapt TOOLCHAIN above if you change TOOLCHAIN_TRIPLET! +TOOLCHAIN_TRIPLET=arm-linux-androideabi +# TOOLCHAIN_TRIPLET=mipsel-linux-android +# TOOLCHAIN_TRIPLET=i686-linux-android # The path where the cross-compiled packages will be installed. PREFIX=$HOME/sr_android @@ -35,36 +43,64 @@ BUILDDIR=./sr_android_build # ----------------------------------------------------------------------------- VER_LIBICONV=1.14 -VER_GETTEXT=0.18.2 +VER_GETTEXT=0.18.3 VER_ZLIB=1.2.8 -VER_PCRE=8.32 -VER_LIBFFI=3.0.11 -VER_GLIB=2.34.3 -VER_LIBZIP=0.10.1 +VER_PCRE=8.33 +VER_LIBFFI=3.0.13 +VER_GLIB=2.38.2 +VER_GLIB_SHORT=2.38 +VER_LIBZIP=0.11.1 VER_LIBUSB=0.1.12 VER_LIBFTDI=0.20 +VER_LIBUSBX=1.0.17 +VER_PYTHON=3.3.3 SF_MIRROR=switch.dl.sourceforge.net # ----------------------------------------------------------------------------- -# We need to find tools in the toolchain and in the install directory. -export PATH=$PREFIX/bin:$TOOLCHAIN/bin:$PATH - -# Define some helper variables. -C="--host=arm-linux-androideabi --prefix=$PREFIX" -P="$PREFIX/lib/pkgconfig" - # Remove build directory contents (if any) and create a new build dir. rm -rf $BUILDDIR mkdir $BUILDDIR cd $BUILDDIR +# Build host Python before we start messing with the environment. +wget http://python.org/ftp/python/$VER_PYTHON/Python-$VER_PYTHON.tar.xz +tar xJf Python-$VER_PYTHON.tar.xz +cd Python-$VER_PYTHON +./configure +make python +make Parser/pgen +mv python hostpython +mv Parser/pgen Parser/hostpgen +cd .. + +# ----------------------------------------------------------------------------- + +# We need to find tools in the toolchain. +export PATH=$TOOLCHAIN/bin:$PATH + +# Tell pkg-config to only look for our cross-built stuff. +export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig" +export -n PKG_CONFIG_PATH + +# Define some helper variables. +C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX" + # Get the latest versions of config.guess/config.sub that know about Android. git clone git://git.savannah.gnu.org/config.git # ----------------------------------------------------------------------------- +# Python (needed for libsigrokdecode) +cd Python-$VER_PYTHON +make distclean +autoreconf +patch -p1 < ../../Python-$VER_PYTHON.patch +ac_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 +make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen install +cd .. + # libiconv (needed for glib) wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-$VER_LIBICONV.tar.gz tar xfz libiconv-$VER_LIBICONV.tar.gz @@ -86,22 +122,22 @@ test -d $PREFIX/include || mkdir $PREFIX/include cp include/iconv.h.inst $PREFIX/include/iconv.h cd .. -## # TODO: Needs libiconv -## # gettext (needed for glib) -## wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz -## tar xfz gettext-$VER_GETTEXT.tar.gz -## cd gettext-$VER_GETTEXT -## ./configure $C -## make -## make install -## cd .. +# gettext (needed for glib) +wget http://ftp.gnu.org/pub/gnu/gettext/gettext-$VER_GETTEXT.tar.gz +tar xfz gettext-$VER_GETTEXT.tar.gz +cd gettext-$VER_GETTEXT +./configure $C --enable-shared --disable-libasprintf +cd gettext-runtime +make +make install +cd ../.. # zlib (needed for glib and libzip) wget http://zlib.net/zlib-$VER_ZLIB.tar.gz tar xfvz zlib-$VER_ZLIB.tar.gz cd zlib-$VER_ZLIB # Note: zlib's configure doesn't understand --host, we need to pass $CC. -CC=arm-linux-androideabi-gcc ./configure --prefix=$PREFIX +CC=$TOOLCHAIN_TRIPLET-gcc ./configure --prefix=$PREFIX make make install cd .. @@ -124,15 +160,16 @@ make make install cd .. -## # TODO: Not all build-dependencies build, yet. -## # glib -## wget ftp://ftp.gnome.org/pub/gnome/sources/glib/2.34/glib-$VER_GLIB.tar.xz -## tar xfJ glib-$VER_GLIB.tar.xz -## cd glib-$VER_GLIB -## ./configure $C -## make -## make install -## cd .. +# glib +wget http://ftp.gnome.org/pub/gnome/sources/glib/$VER_GLIB_SHORT/glib-$VER_GLIB.tar.xz +tar xJf glib-$VER_GLIB.tar.xz +cd glib-$VER_GLIB +./autogen.sh +# Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config. +LDFLAGS=-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 +make +make install +cd .. # libzip wget http://www.nih.at/libzip/libzip-$VER_LIBZIP.tar.gz @@ -152,7 +189,7 @@ cd libusb-$VER_LIBUSB cp -f ../config/config.guess . cp -f ../config/config.sub . ./configure $C -# explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs +# Explicitly exclude libusbpp.la from lib_LTLIBRARIES, and skip subdirs. make lib_LTLIBRARIES=libusb.la SUBDIRS=. make lib_LTLIBRARIES=libusb.la SUBDIRS=. install cd .. @@ -163,8 +200,54 @@ tar xfz libftdi-$VER_LIBFTDI.tar.gz cd libftdi-$VER_LIBFTDI cp -f ../config/config.guess . cp -f ../config/config.sub . +# libftdi needs to find libusb-config which is installed in $PREFIX/bin. +PATH=$PREFIX/bin:$PATH ./configure $C +make +make install +cd .. + +# libusb-1.0 +wget http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2 +tar xfj libusbx-$VER_LIBUSBX.tar.bz2 +cd libusbx-$VER_LIBUSBX +patch -p1 < ../../libusb-1.0.patch +./configure $C --disable-udev +make +make install +cd .. + +# libserialport +git clone git://sigrok.org/libserialport +cd libserialport +./autogen.sh +./configure $C --without-libudev +make +make install +cd .. + +# libsigrok +git clone git://sigrok.org/libsigrok +cd libsigrok +./autogen.sh +./configure $C +make +make install +cd .. + +# libsigrokdecode +git clone git://sigrok.org/libsigrokdecode +cd libsigrokdecode +./autogen.sh ./configure $C make make install cd .. +# sigrok-cli +git clone git://sigrok.org/sigrok-cli +cd sigrok-cli +./autogen.sh +./configure $C +make +make install +cd ..