patches that could interest you
Fawzi Mohamed
fawzi.mohamed@nokia.com
Mon Jun 27 15:35:00 GMT 2011
Hi all,
while working on bug http://sourceware.org/bugzilla/show_bug.cgi?id=11488 I made a some changes to binutils.
Thanks to Tristan the main fix of that bug is already in, but this small change should also be added in some way, as it
adds the forgotten ignore of routine_64 load command (which is the equivalent of the 32 bit one, and contains the
init routines of the dylib).
Suppress the "unable to read unknown load command" when loading a 64 bit dylib with init routines
Index: bfd/mach-o.c
===================================================================
RCS file: /cvs/src/src/bfd/mach-o.c,v
retrieving revision 1.57
diff -f -u -r1.57 mach-o.c
--- bfd/mach-o.c 14 Jan 2011 12:35:56 -0000 1.57
+++ bfd/mach-o.c 27 Jun 2011 15:06:23 -0000
@@ -2523,6 +2523,7 @@
case BFD_MACH_O_LC_FVMFILE:
case BFD_MACH_O_LC_PREPAGE:
case BFD_MACH_O_LC_ROUTINES:
+ case BFD_MACH_O_LC_ROUTINES_64:
break;
case BFD_MACH_O_LC_SUB_FRAMEWORK:
case BFD_MACH_O_LC_SUB_UMBRELLA:
More information about the Binutils
mailing list