* mach-o.c (mach_o_section_name_xlat dw): Add entry for

.debug_gdb_scripts
This commit is contained in:
Nick Clifton 2013-07-18 11:40:37 +00:00
parent 7a89b94e91
commit 671a6cbe38
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2013-07-18 Bill Neubauer <wcn@google.com>
* mach-o.c (mach_o_section_name_xlat dw): Add entry for
.debug_gdb_scripts
2013-07-18 Roland McGrath <mcgrathr@google.com>
* elf32-arm.c (elf32_arm_stub_long_branch_arm_nacl): New variable.

View File

@ -195,6 +195,9 @@ static const mach_o_section_name_xlat dwarf_section_names_xlat[] =
{ ".debug_macro", "__debug_macro",
SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
BFD_MACH_O_S_ATTR_DEBUG, 0},
{ ".debug_gdb_scripts", "__debug_gdb_scri",
SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
BFD_MACH_O_S_ATTR_DEBUG, 0},
{ NULL, NULL, 0, 0, 0, 0}
};