X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=cross-compile%2Fandroid%2Fsigrok-cross-android;h=ade75f7d7098b96bcc669aa389786f04ac868969;hp=1c158339cb0c9de099c0e0ffd16653d42e4d7dcc;hb=11b9792eac7af42916f6e854400b5cc5ca942247;hpb=6cdef10369a35daeea9c7b0df99cef5e6461f730 diff --git a/cross-compile/android/sigrok-cross-android b/cross-compile/android/sigrok-cross-android index 1c15833..ade75f7 100755 --- a/cross-compile/android/sigrok-cross-android +++ b/cross-compile/android/sigrok-cross-android @@ -21,6 +21,12 @@ set -e +# The path where Android NDK is located. +ANDROID_NDK=/usr/local/android-ndk-r9d + +# The path where Android SDK is located. +ANDROID_SDK=/usr/local/android + # The path where your Android toolchain directory is located. TOOLCHAIN=$HOME/android/android-arm-toolchain # TOOLCHAIN=$HOME/android/android-mipsel-toolchain @@ -53,16 +59,24 @@ 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_LIBFTDI1=1.1 VER_LIBUSBX=1.0.17 VER_PYTHON=3.3.3 +VER_BOOST=1.55.0 +VER_QT=n0.31 SF_MIRROR=switch.dl.sourceforge.net WGET="wget --quiet" GIT_CLONE="git clone --depth=1" +case "$TOOLCHAIN_TRIPLET" in + arm*) TARGET_ARCH=armeabi;; + mips*) TARGET_ARCH=mips;; + i686*) TARGET_ARCH=x86;; + *) echo >&2 "Unknown prefix for TOOLCHAIN_TRIPLET"; exit 1;; +esac + # ----------------------------------------------------------------------------- # Remove build directory contents (if any) and create a new build dir. @@ -92,10 +106,15 @@ export -n PKG_CONFIG_PATH # Define some helper variables. C="--host=$TOOLCHAIN_TRIPLET --prefix=$PREFIX" +CM="-Wno-dev -DCMAKE_TOOLCHAIN_FILE=../android.toolchain.cmake -DANDROID_ABI=${TARGET_ARCH} -DCMAKE_INSTALL_PREFIX=${PREFIX} -DANDROID_STANDALONE_TOOLCHAIN=${TOOLCHAIN}" # Get the latest versions of config.guess/config.sub that know about Android. $GIT_CLONE git://git.savannah.gnu.org/config.git +# Get a toolchain for cmake that knows about Android +wget https://android-cmake.googlecode.com/hg/toolchain/android.toolchain.cmake +patch < ../android.toolchain.cmake.patch android.toolchain.cmake + # ----------------------------------------------------------------------------- # Python (needed for libsigrokdecode) @@ -188,30 +207,6 @@ make $PARALLEL make install cd .. -# libusb-0.1 (not used directly, but needed for libftdi) -$WGET http://$SF_MIRROR/project/libusb/libusb-0.1%20%28LEGACY%29/$VER_LIBUSB/libusb-$VER_LIBUSB.tar.gz -tar xfz libusb-$VER_LIBUSB.tar.gz -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. -make lib_LTLIBRARIES=libusb.la SUBDIRS=. $PARALLEL -make lib_LTLIBRARIES=libusb.la SUBDIRS=. install -cd .. - -# libftdi -$WGET http://www.intra2net.com/en/developer/libftdi/download/libftdi-$VER_LIBFTDI.tar.gz -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 $PARALLEL -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 @@ -222,6 +217,15 @@ make $PARALLEL make install cd .. +# libftdi1 +$WGET http://www.intra2net.com/en/developer/libftdi/download/libftdi1-$VER_LIBFTDI1.tar.bz2 +tar xfj libftdi1-$VER_LIBFTDI1.tar.bz2 +cd libftdi1-$VER_LIBFTDI1 +cmake $CM . +make $PARALLEL +make install +cd .. + # libserialport $GIT_CLONE git://sigrok.org/libserialport cd libserialport @@ -258,3 +262,47 @@ make $PARALLEL V=1 make install cd .. + +# Check if we have kit to build PulseView + +if [ -z "$ANDROID_NDK" -o ! -d "$ANDROID_NDK" ]; then + echo "Android NDK not available, not building PulseView" + exit 0 +fi + +if [ -z "$ANDROID_SDK" -o ! -d "$ANDROID_SDK"/platforms/android-4 -o \ + ! -d "$ANDROID_SDK"/platforms/android-7 -o \ + ! -d "$ANDROID_SDK"/platforms/android-8 -o \ + ! -d "$ANDROID_SDK"/platforms/android-14 ]; then + echo "Android SDK with platforms 4 7 8 14 not available, not building PulseView" + exit 0 +fi + +ANDROID_TOOLS=${ANDROID_SDK}/tools +ANDROID_BUILD_TOOLS=${ANDROID_SDK}/build-tools/19.0.1 + +if [ ! -e "$ANDROID_TOOLS/android" -o ! -e "$ANDROID_BUILD_TOOLS/dx" ]; then + echo "Essential Android build tools not available, not building PulseView" + exit 0 +fi + +NDK_TOOLCHAIN_VERSION=`${TOOLCHAIN_TRIPLET}-gcc --version | head -1 | sed -e 's/.* \([0-9]\+\.[0-9.]\+\)\( \|.*\)$/\1/'` +NDK_HOST=`"$ANDROID_NDK/ndk-build" -p 2>/dev/null | awk '$1 == "HOST_TAG" { print $3 }'` + + +# boost (needed for PulseView) +$WGET http://$SF_MIRROR/project/boost/boost/$VER_BOOST/boost_${VER_BOOST//./_}.tar.bz2 +tar xfj boost_${VER_BOOST//./_}.tar.bz2 +cd boost_${VER_BOOST//./_} +patch -p1 < ../../boost.patch +./bootstrap.sh --with-toolset=gcc --with-libraries=filesystem,system,thread --without-icu +echo "using gcc : $NDK_TOOLCHAIN_VERSION : \"${TOOLCHAIN_TRIPLET}-g++\" : \"-I$PREFIX/include -I${ANDROID_NDK}/sources/cxx-stl/stlport/stlport\" \"-L$PREFIX/lib\" ;" > user-config.jam +./b2 -q -d+2 --user-config=user-config.jam toolset=gcc variant=release link=shared threading=multi runtime-link=shared target-os=android --prefix=$PREFIX --layout=system install +cd .. + +# qt (needed for PulseView) +$GIT_CLONE -b $VER_QT git://anongit.kde.org/android-qt.git +cd android-qt +patch -p1 < ../../android-qt.patch +ANDROID_SDK_PLATFORM_TOOLS_PATH=$ANDROID_BUILD_TOOLS ANDROID_SDK_TOOLS_PATH=$ANDROID_TOOLS ./android/androidconfigbuild.sh -n $ANDROID_NDK -a $TARGET_ARCH -l 14 -q 1 -d 1 -i $PREFIX -k 1 -o $NDK_HOST -v $NDK_TOOLCHAIN_VERSION +cd ..