mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
[exosphere] linker.ld: remove some unneeded "AT" commands
This commit is contained in:
parent
0d8ba7706d
commit
912590b2fd
1 changed files with 19 additions and 19 deletions
|
@ -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) }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue