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-largefile.patch | |
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-largefile.patch')
-rw-r--r-- | package/valgrind/valgrind-largefile.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/package/valgrind/valgrind-largefile.patch b/package/valgrind/valgrind-largefile.patch deleted file mode 100644 index 9ef5708bc..000000000 --- a/package/valgrind/valgrind-largefile.patch +++ /dev/null @@ -1,27 +0,0 @@ -[PATCH] valgrind: don't enable largefile support unconditionally on uClibc - -uClibc can be compiled without largefile support (and errors out if -_FILE_OFFSET_BITS is set to 64), so don't define it if that combination -is detected. - -Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> ---- - coregrind/m_ume.c | 4 ++++ - 1 file changed, 4 insertions(+) - -Index: valgrind-3.2.3/coregrind/m_ume.c -=================================================================== ---- valgrind-3.2.3.orig/coregrind/m_ume.c -+++ valgrind-3.2.3/coregrind/m_ume.c -@@ -31,7 +31,11 @@ - - - #define _GNU_SOURCE -+#include <features.h> -+/* uclibc without largefile support #errors on _FILE_OFFSET_BITS=64 */ -+#if !(defined(__UCLIBC__) && !defined(__UCLIBC_HAS_LFS__)) - #define _FILE_OFFSET_BITS 64 -+#endif - - // It seems that on SuSE 9.1 (x86) something in <fcntl.h> messes up stuff - // acquired indirectly from vki-x86-linux.h. Therefore our headers must be |