diff options
author | Jason Merrill <jason@redhat.com> | 1996-10-07 05:36:57 +0000 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 1996-10-07 05:36:57 +0000 |
commit | 9193c60b5554e4a8a68ba22b6e467365820b10d5 (patch) | |
tree | 31f376cb6163814a8f5d2061130b24676e84dcf0 /ld | |
parent | de54e493db088bd8d820940b2c77b85c4cab229a (diff) | |
download | gdb-9193c60b5554e4a8a68ba22b6e467365820b10d5.zip gdb-9193c60b5554e4a8a68ba22b6e467365820b10d5.tar.gz gdb-9193c60b5554e4a8a68ba22b6e467365820b10d5.tar.bz2 |
Sun Oct 6 22:35:36 1996 Jason Merrill <jason@yorick.cygnus.com>
* scripttempl/elf{,mips,ppc}.sc: Add DWARF 2 sections.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/elfmips.sc | 4 | ||||
-rw-r--r-- | ld/scripttempl/elfppc.sc | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index d64a26c..8687d9a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Sun Oct 6 22:35:36 1996 Jason Merrill <jason@yorick.cygnus.com> + + * scripttempl/elf{,mips,ppc}.sc: Add DWARF 2 sections. + Fri Oct 4 18:49:31 1996 Ian Lance Taylor <ian@cygnus.com> * scripttempl/m68kcoff.sc: Only set the address of .text if diff --git a/ld/scripttempl/elfmips.sc b/ld/scripttempl/elfmips.sc index 9c6eaac..2948e1b 100644 --- a/ld/scripttempl/elfmips.sc +++ b/ld/scripttempl/elfmips.sc @@ -163,6 +163,10 @@ SECTIONS section so we begin .debug at 0. It's not clear yet what needs to happen for the others. */ .debug 0 : { *(.debug) } + .debug_info 0 : { *(.debug_info) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } .debug_srcinfo 0 : { *(.debug_srcinfo) } .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } diff --git a/ld/scripttempl/elfppc.sc b/ld/scripttempl/elfppc.sc index 556c9af..a1ba319 100644 --- a/ld/scripttempl/elfppc.sc +++ b/ld/scripttempl/elfppc.sc @@ -177,6 +177,10 @@ SECTIONS section so we begin .debug at 0. It's not clear yet what needs to happen for the others. */ .debug 0 : { *(.debug) } + .debug_info 0 : { *(.debug_info) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } .debug_srcinfo 0 : { *(.debug_srcinfo) } .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } |