summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-07-18 11:40:37 +0000
committerNick Clifton <nickc@redhat.com>2013-07-18 11:40:37 +0000
commit0c5b9223974087ff95e2348c6a1e21881cdc20a4 (patch)
treea0ba569393babf3c954593c966ef580fbacfc49f
parent82715c4ce7b2602ca64dae38c77ca8a877f32d34 (diff)
downloadbinutils-redhat-0c5b9223974087ff95e2348c6a1e21881cdc20a4.tar.gz
* mach-o.c (mach_o_section_name_xlat dw): Add entry for
.debug_gdb_scripts
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/mach-o.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 28572a5093..df25bd4e84 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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.
diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index e1bbd29f46..32e48ac3cc 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -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}
};