X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=cross-compile%2Fandroid%2Fsigrok-cross-android;h=2cb15250ec9257b7f93a8d7881c691a9b5fe2b68;hb=2e353a0876dafc17eb8202293914a3dc07186cbf;hp=72da7c8ae3dc14a16b5fea38573f37591f2e5505;hpb=559be0ff71b4972999f869e04f9b26ab9911328b;p=sigrok-util.git diff --git a/cross-compile/android/sigrok-cross-android b/cross-compile/android/sigrok-cross-android index 72da7c8..2cb1525 100755 --- a/cross-compile/android/sigrok-cross-android +++ b/cross-compile/android/sigrok-cross-android @@ -35,31 +35,54 @@ 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_PCRE=8.33 +VER_LIBFFI=3.0.13 VER_GLIB=2.34.3 -VER_LIBZIP=0.10.1 +VER_LIBZIP=0.11.1 VER_LIBUSB=0.1.12 VER_LIBFTDI=0.20 +VER_LIBUSB_1_0=1.0.9 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/3.3.3/Python-3.3.3.tar.xz +tar xJf Python-3.3.3.tar.xz +cd Python-3.3.3 +./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=arm-linux-androideabi --prefix=$PREFIX" + +# Remember the directory we're in. +case "$0" in + /*) TOP=$(dirname "$0");; + *) TOP=$(dirname "$(pwd)"/"$0");; +esac + # Get the latest versions of config.guess/config.sub that know about Android. git clone git://git.savannah.gnu.org/config.git @@ -125,12 +148,12 @@ make install cd .. # glib -wget https://github.com/djdeath/glib/archive/android.zip -unzip -q android.zip -cd glib-android +wget http://ftp.gnome.org/pub/gnome/sources/glib/2.38/glib-2.38.2.tar.xz +tar xJf glib-2.38.2.tar.xz +cd glib-2.38.2 ./autogen.sh # Note: Manual LDFLAGS/CPPFLAGS needed for libiconv, rest uses pkg-config. -PKG_CONFIG_PATH=$P 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 $C --disable-modular-tests +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 $C make make install cd .. @@ -153,7 +176,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 .. @@ -169,11 +192,30 @@ make make install cd .. +# libusb-1.0 +wget http://$SF_MIRROR/project/libusb/libusb-1.0/libusb-$VER_LIBUSB_1_0/libusb-$VER_LIBUSB_1_0.tar.bz2 +tar xfj libusb-$VER_LIBUSB_1_0.tar.bz2 +cd libusb-$VER_LIBUSB_1_0 +patch -p1 < $TOP/libusb-1.0.patch +./configure $C +make +make install +cd .. + # libsigrok git clone git://sigrok.org/libsigrok cd libsigrok ./autogen.sh -LDFLAGS=-L$PREFIX/lib CPPFLAGS="-I$PREFIX/include -I$PREFIX/lib/libzip/include" PKG_CONFIG_LIBDIR=$PREFIX/lib/pkgconfig ./configure $C --disable-alsa --disable-link-mso19 --disable-kecheng-kc-330b +./configure $C make make install cd .. + +# Python +cd Python-3.3.3 +make distclean +autoreconf +patch -p1 < ../../Python-3.3.3.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 ..