valgrind: Blacklist arm and x86_64 for now

This commit is contained in:
Fredrik Fornwall 2016-08-02 07:41:37 -04:00
parent 7395ed0fdd
commit 5a15b12e4b
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
# Note:
# - Does not build on arm due to https://github.com/android-ndk/ndk/issues/132 (fixed in ndk r13)
# - Does not build on x86_64 due to lacking upstream support of that arch on android.
TERMUX_PKG_HOMEPAGE=http://valgrind.org/
TERMUX_PKG_DESCRIPTION="Valgrind is an instrumentation framework for building dynamic analysis tools."
TERMUX_PKG_VERSION=3.11.0
TERMUX_PKG_SRCURL=http://valgrind.org/downloads/valgrind-${TERMUX_PKG_VERSION}.tar.bz2
# TERMUX_PKG_SRCURL=https://fossies.org/linux/misc/valgrind-${TERMUX_PKG_VERSION}.tar.bz2
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-tmpdir=$TERMUX_PREFIX/tmp"
# - Does not build on arm due to https://github.com/android-ndk/ndk/issues/132 (fixed in ndk r13)
# - Does not build on x86_64 due to lacking upstream support of that arch on android.
TERMUX_PKG_BLACKLISTED_ARCHES="arm, x86_64"
if [ "$TERMUX_ARCH" == "arm" ]; then
# valgrind doesn't like arm; armv7 works, though.