Add notes for valgrind

This commit is contained in:
Fredrik Fornwall 2016-07-28 17:50:42 -04:00
parent 3f9d72016a
commit 9f54f4f6ce
1 changed files with 5 additions and 2 deletions

View File

@ -1,10 +1,13 @@
# 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_DEPENDS=""
# TERMUX_PKG_SRCURL=https://fossies.org/linux/misc/valgrind-${TERMUX_PKG_VERSION}.tar.bz2
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-tmpdir=$TERMUX_PREFIX/tmp"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-tmpdir=/data/data/com.termux/files/usr/tmp"
if [ "$TERMUX_ARCH" == "arm" ]; then
# valgrind doesn't like arm; armv7 works, though.
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --host=armv7-linux-androideabi"