diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-07-11 22:17:16 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-07-11 23:23:17 +0200 |
commit | afabcb63816806aa8c971000c486f4e108aeb117 (patch) | |
tree | b246d53cc7981f23b271bdc6cc9a9877788f2f3f /package/valgrind/valgrind.sh | |
parent | a8041c0973528f4ef15e1a67cc1d3baf08261b4f (diff) | |
download | buildroot-novena-afabcb63816806aa8c971000c486f4e108aeb117.tar.gz buildroot-novena-afabcb63816806aa8c971000c486f4e108aeb117.zip |
valgrind: bump to 3.6.1 and add support for ARMv7
We removed the shell script that wrapped valgrind (not nice to install
such non-standard things), and will let the user use the uclibc.supp
suppression file if needed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/valgrind/valgrind.sh')
-rwxr-xr-x | package/valgrind/valgrind.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/package/valgrind/valgrind.sh b/package/valgrind/valgrind.sh deleted file mode 100755 index 4b8eb2e57..000000000 --- a/package/valgrind/valgrind.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -e -# -# Valgrind wrapper - -# Use special suppression file for uClibc -export VALGRIND_OPTS="$VALGRIND_OPTS --suppressions=/usr/lib/valgrind/uclibc.supp" - -# Use 'exec' to avoid having another shell process hanging around. -exec $0.bin "$@" - |