X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=cross-compile%2Fandroid%2Fsigrok-cross-android;h=1cbac7b072b21ea380a79e5506bcfa7941a4f96e;hb=c548351bcbc43a8adee1e46ebedad6d5b5d5269d;hp=d6a27ede4cf68700463735f6751f0f308b220e6c;hpb=96a10f86b44eb68588900c7f64b2ecbb62d7cfaf;p=sigrok-util.git diff --git a/cross-compile/android/sigrok-cross-android b/cross-compile/android/sigrok-cross-android index d6a27ed..1cbac7b 100755 --- a/cross-compile/android/sigrok-cross-android +++ b/cross-compile/android/sigrok-cross-android @@ -44,13 +44,32 @@ VER_LIBZIP=0.11.1 VER_LIBUSB=0.1.12 VER_LIBFTDI=0.20 VER_LIBUSB_1_0=1.0.9 +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 +# 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" @@ -65,11 +84,6 @@ case "$0" in *) TOP=$(dirname "$(pwd)"/"$0");; esac -# Remove build directory contents (if any) and create a new build dir. -rm -rf $BUILDDIR -mkdir $BUILDDIR -cd $BUILDDIR - # Get the latest versions of config.guess/config.sub that know about Android. git clone git://git.savannah.gnu.org/config.git @@ -174,7 +188,8 @@ tar xfz libftdi-$VER_LIBFTDI.tar.gz cd libftdi-$VER_LIBFTDI cp -f ../config/config.guess . cp -f ../config/config.sub . -./configure $C +# libftdi needs to find libusb-config which is installed in $PREFIX/bin. +PATH=$PREFIX/bin:$PATH ./configure $C make make install cd .. @@ -189,6 +204,15 @@ 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 @@ -198,3 +222,29 @@ make make install cd .. +# Python +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 .. + +# 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 ..