|
From: <sv...@va...> - 2010-08-22 12:13:43
|
Author: sewardj
Date: 2010-08-22 13:13:35 +0100 (Sun, 22 Aug 2010)
New Revision: 11281
Log:
Merge from branches/THUMB: supps and mandatory redirs on Ubuntu 10.04 (ARM)
Modified:
trunk/coregrind/m_redir.c
trunk/glibc-2.X.supp.in
Modified: trunk/coregrind/m_redir.c
===================================================================
--- trunk/coregrind/m_redir.c 2010-08-22 12:08:59 UTC (rev 11280)
+++ trunk/coregrind/m_redir.c 2010-08-22 12:13:35 UTC (rev 11281)
@@ -1009,7 +1009,7 @@
add_hardwired_spec(
"ld-linux.so.3", "strlen",
(Addr)&VG_(arm_linux_REDIR_FOR_strlen),
- NULL
+ complain_about_stripped_glibc_ldso
);
//add_hardwired_spec(
// "ld-linux.so.3", "index",
@@ -1019,7 +1019,7 @@
add_hardwired_spec(
"ld-linux.so.3", "memcpy",
(Addr)&VG_(arm_linux_REDIR_FOR_memcpy),
- NULL
+ complain_about_stripped_glibc_ldso
);
}
/* nothing so far */
Modified: trunk/glibc-2.X.supp.in
===================================================================
--- trunk/glibc-2.X.supp.in 2010-08-22 12:08:59 UTC (rev 11280)
+++ trunk/glibc-2.X.supp.in 2010-08-22 12:13:35 UTC (rev 11281)
@@ -228,3 +228,11 @@
obj:/lib/libpthread-0.10.so
fun:pthread_create
}
+
+##----------------------------------------------------------------------##
+# Ubuntu 10.04 on ARM (Thumb). Not sure why this is necessary.
+{
+ U1004-ARM-_dl_relocate_object
+ Memcheck:Cond
+ fun:_dl_relocate_object
+}
|