aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch
diff options
context:
space:
mode:
authorZhenhua Luo <b19537@freescale.com>2012-09-12 16:20:46 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-12 14:55:26 +0100
commit14626cc76210ed6fe40316a311f24147ed8de8be (patch)
treeb0e317f6ca3b9c8e91c08fb4ae9bc7a54d7637d9 /meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch
parent7a10eccc75f12bfe3afb925c976405cfcd9baeb0 (diff)
downloadopenembedded-core-contrib-14626cc76210ed6fe40316a311f24147ed8de8be.tar.gz
valgrind: fix debug info reading error when do memcheck on ppc targets
following is the error message: --2263-- WARNING: Serious error when reading debug info --2263-- When reading debug info from /lib/ld-2.13.so: --2263-- Can't make sense of .got section mapping --2263-- WARNING: Serious error when reading debug info --2263-- When reading debug info from /home/root/lzh: --2263-- Can't make sense of .data section mapping --2263-- WARNING: Serious error when reading debug info --2263-- When reading debug info from /usr/lib/valgrind/vgpreload_core-ppc32-linux.so: --2263-- Can't make sense of .data section mapping --2263-- WARNING: Serious error when reading debug info --2263-- When reading debug info from /usr/lib/valgrind/vgpreload_memcheck-ppc32-linux.so: --2263-- Can't make sense of .data section mapping --2263-- WARNING: Serious error when reading debug info --2263-- When reading debug info from /lib/libc-2.13.so: --2263-- Can't make sense of .data section mapping Signed-off-by: Zhenhua Luo <b19537@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch b/meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch
new file mode 100644
index 0000000000..b1626f0b0f
--- /dev/null
+++ b/meta/recipes-devtools/valgrind/valgrind-3.7.0/valgrind-3.7.0-fix-error-of-reading-debug-info.patch
@@ -0,0 +1,33 @@
+Upstream-Status: Pending
+
+fix debug info reading error when do memcheck on ppc targets
+ following is the error message:
+ --2263-- WARNING: Serious error when reading debug info
+ --2263-- When reading debug info from /lib/ld-2.13.so:
+ --2263-- Can't make sense of .got section mapping
+ --2263-- WARNING: Serious error when reading debug info
+ --2263-- When reading debug info from /home/root/lzh:
+ --2263-- Can't make sense of .data section mapping
+ --2263-- WARNING: Serious error when reading debug info
+ --2263-- When reading debug info from /usr/lib/valgrind/vgpreload_core-ppc32-linux.so:
+ --2263-- Can't make sense of .data section mapping
+ --2263-- WARNING: Serious error when reading debug info
+ --2263-- When reading debug info from /usr/lib/valgrind/vgpreload_memcheck-ppc32-linux.so:
+ --2263-- Can't make sense of .data section mapping
+ --2263-- WARNING: Serious error when reading debug info
+ --2263-- When reading debug info from /lib/libc-2.13.so:
+ --2263-- Can't make sense of .data section mapping
+
+Signed-off-by: Zhenhua Luo <b19537@freescale.com>
+
+--- a/coregrind/m_debuginfo/readelf.c 2012-09-11 21:45:36.696462313 -0500
++++ b/coregrind/m_debuginfo/readelf.c 2012-09-11 21:45:49.913463615 -0500
+@@ -1539,7 +1539,7 @@
+ && phdr->p_offset < di->fsm.rw_map_foff + di->fsm.rw_map_size
+ && phdr->p_offset + phdr->p_filesz
+ <= di->fsm.rw_map_foff + di->fsm.rw_map_size
+- && (phdr->p_flags & (PF_R | PF_W | PF_X)) == (PF_R | PF_W)) {
++ && (phdr->p_flags & (PF_R | PF_W | PF_X)) >= (PF_R | PF_W)) {
+ if (n_rw == N_RX_RW_AREAS) {
+ ML_(symerr)(di, True,
+ "N_RX_RW_AREAS is too low; "