Skip to content

Instantly share code, notes, and snippets.

@ctanis
Created November 20, 2012 18:29
Show Gist options
  • Save ctanis/4119882 to your computer and use it in GitHub Desktop.
Save ctanis/4119882 to your computer and use it in GitHub Desktop.
gdb 7.5 patch to shut up about unknown BFD/mach-o commands on Mtn. Lion
diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index 1f9fc17..5e324fc 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -2003,8 +2003,9 @@ bfd_mach_o_write_contents (bfd *abfd)
case BFD_MACH_O_LC_SUB_FRAMEWORK:
break;
default:
- (*_bfd_error_handler) (_("unable to write unknown load command 0x%lx"),
- (unsigned long) cur->type);
+// ctanis
+// (*_bfd_error_handler) (_("unable to write unknown load command 0x%lx"),
+// (unsigned long) cur->type);
return FALSE;
}
}
@@ -3849,8 +3850,9 @@ bfd_mach_o_read_command (bfd *abfd, bfd_mach_o_load_command *command)
return -1;
break;
default:
- (*_bfd_error_handler)(_("%B: unknown load command 0x%lx"),
- abfd, (unsigned long) command->type);
+// ctanis
+// (*_bfd_error_handler)(_("%B: unknown load command 0x%lx"),
+// abfd, (unsigned long) command->type);
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment