|
From: <sv...@va...> - 2012-11-06 22:47:10
|
philippe 2012-11-06 22:47:00 +0000 (Tue, 06 Nov 2012)
New Revision: 13105
Log:
fix n-i-bz same as 303624 (fixed in 3.8.0), but for x86 android
(note: this might be a candidate if a 3.8.2 is done).
Modified files:
trunk/NEWS
trunk/coregrind/m_initimg/initimg-linux.c
Modified: trunk/NEWS (+1 -0)
===================================================================
--- trunk/NEWS 2012-11-04 20:40:33 +00:00 (rev 13104)
+++ trunk/NEWS 2012-11-06 22:47:00 +00:00 (rev 13105)
@@ -43,6 +43,7 @@
308711 [390] give more info about aspacemgr and arenas in out_of_memory
n-i-bz [390] report error for vgdb snapshot requested before execution
n-i-bz [390] Some wrong command line options could be ignored
+n-i-bz [390] same as 303624 (fixed in 3.8.0), but for x86 android
Release 3.8.1 (19 September 2012)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Modified: trunk/coregrind/m_initimg/initimg-linux.c (+2 -1)
===================================================================
--- trunk/coregrind/m_initimg/initimg-linux.c 2012-11-04 20:40:33 +00:00 (rev 13104)
+++ trunk/coregrind/m_initimg/initimg-linux.c 2012-11-06 22:47:00 +00:00 (rev 13105)
@@ -672,7 +672,8 @@
However, ignoring AT_BASE makes V crash on Android 4.1.
So, keep the AT_BASE on android for now.
??? Need to dig in depth about AT_BASE/GDB interaction */
-# if !defined(VGPV_arm_linux_android)
+# if !defined(VGPV_arm_linux_android) \
+ && !defined(VGPV_x86_linux_android)
auxv->a_type = AT_IGNORE;
# endif
auxv->u.a_val = info->interp_base;
|