[exosphere] linker.ld: remove some unneeded "AT" commands

This commit is contained in:
TuxSH 2018-05-11 16:28:55 +02:00
parent 0d8ba7706d
commit 912590b2fd

View file

@ -235,35 +235,35 @@ SECTIONS
/DISCARD/ : { *(.group .comment .note) } /DISCARD/ : { *(.group .comment .note) }
/* Stabs debugging sections. */ /* Stabs debugging sections. */
.stab 0 : { *(.stab) } AT>glob .stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) } AT>glob .stabstr 0 : { *(.stabstr) }
.stab.excl 0 : { *(.stab.excl) } AT>glob .stab.excl 0 : { *(.stab.excl) }
.stab.exclstr 0 : { *(.stab.exclstr) } AT>glob .stab.exclstr 0 : { *(.stab.exclstr) }
.stab.index 0 : { *(.stab.index) } AT>glob .stab.index 0 : { *(.stab.index) }
.stab.indexstr 0 : { *(.stab.indexstr) } AT>glob .stab.indexstr 0 : { *(.stab.indexstr) }
/* DWARF debug sections. /* DWARF debug sections.
Symbols in the DWARF debugging sections are relative to the beginning Symbols in the DWARF debugging sections are relative to the beginning
of the section so we begin them at 0. */ of the section so we begin them at 0. */
/* DWARF 1 */ /* DWARF 1 */
.debug 0 : { *(.debug) } AT>glob .debug 0 : { *(.debug) }
.line 0 : { *(.line) } AT>glob .line 0 : { *(.line) }
/* GNU DWARF 1 extensions */ /* GNU DWARF 1 extensions */
.debug_srcinfo 0 : { *(.debug_srcinfo) } AT>glob .debug_srcinfo 0 : { *(.debug_srcinfo) }
.debug_sfnames 0 : { *(.debug_sfnames) } AT>glob .debug_sfnames 0 : { *(.debug_sfnames) }
/* DWARF 1.1 and DWARF 2 */ /* DWARF 1.1 and DWARF 2 */
.debug_aranges 0 : { *(.debug_aranges) } AT>glob .debug_aranges 0 : { *(.debug_aranges) }
.debug_pubnames 0 : { *(.debug_pubnames) } AT>glob .debug_pubnames 0 : { *(.debug_pubnames) }
/* DWARF 2 */ /* DWARF 2 */
.debug_info 0 : { *(.debug_info) } AT>glob .debug_info 0 : { *(.debug_info) }
.debug_abbrev 0 : { *(.debug_abbrev) } AT>glob .debug_abbrev 0 : { *(.debug_abbrev) }
.debug_line 0 : { *(.debug_line) } AT>glob .debug_line 0 : { *(.debug_line) }
.debug_frame 0 : { *(.debug_frame) } AT>glob .debug_frame 0 : { *(.debug_frame) }
.debug_str 0 : { *(.debug_str) } AT>glob .debug_str 0 : { *(.debug_str) }
.debug_loc 0 : { *(.debug_loc) } AT>glob .debug_loc 0 : { *(.debug_loc) }
.debug_macinfo 0 : { *(.debug_macinfo) } AT>glob .debug_macinfo 0 : { *(.debug_macinfo) }
} }