|
From: <sv...@va...> - 2011-05-10 08:42:22
|
Author: sewardj
Date: 2011-05-10 09:42:14 +0100 (Tue, 10 May 2011)
New Revision: 11739
Log:
Handle executables created by the Xcode 3.2.x linker. These contain
LC_DYSYMTAB sections that apparently the 4.0.x created ones don't.
Modified:
trunk/coregrind/fixup_macho_loadcmds.c
Modified: trunk/coregrind/fixup_macho_loadcmds.c
===================================================================
--- trunk/coregrind/fixup_macho_loadcmds.c 2011-05-09 22:51:14 UTC (rev 11738)
+++ trunk/coregrind/fixup_macho_loadcmds.c 2011-05-10 08:42:14 UTC (rev 11739)
@@ -400,6 +400,10 @@
if (DEBUGPRINTING)
printf("LC_SYMTAB");
break;
+ case LC_DYSYMTAB:
+ if (DEBUGPRINTING)
+ printf("LC_DYSYMTAB");
+ break;
case LC_UUID:
if (DEBUGPRINTING)
printf("LC_UUID");
|