From 912590b2fd4b3836a08a03a90b66160ebc31b5a3 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Fri, 11 May 2018 16:28:55 +0200 Subject: [PATCH] [exosphere] linker.ld: remove some unneeded "AT" commands --- exosphere/linker.ld | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/exosphere/linker.ld b/exosphere/linker.ld index 9f6a87dc0..20db711cd 100644 --- a/exosphere/linker.ld +++ b/exosphere/linker.ld @@ -235,35 +235,35 @@ SECTIONS /DISCARD/ : { *(.group .comment .note) } /* Stabs debugging sections. */ - .stab 0 : { *(.stab) } AT>glob - .stabstr 0 : { *(.stabstr) } AT>glob - .stab.excl 0 : { *(.stab.excl) } AT>glob - .stab.exclstr 0 : { *(.stab.exclstr) } AT>glob - .stab.index 0 : { *(.stab.index) } AT>glob - .stab.indexstr 0 : { *(.stab.indexstr) } AT>glob + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } + .stab.excl 0 : { *(.stab.excl) } + .stab.exclstr 0 : { *(.stab.exclstr) } + .stab.index 0 : { *(.stab.index) } + .stab.indexstr 0 : { *(.stab.indexstr) } /* DWARF debug sections. Symbols in the DWARF debugging sections are relative to the beginning of the section so we begin them at 0. */ /* DWARF 1 */ - .debug 0 : { *(.debug) } AT>glob - .line 0 : { *(.line) } AT>glob + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } AT>glob - .debug_sfnames 0 : { *(.debug_sfnames) } AT>glob + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } AT>glob - .debug_pubnames 0 : { *(.debug_pubnames) } AT>glob + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } /* DWARF 2 */ - .debug_info 0 : { *(.debug_info) } AT>glob - .debug_abbrev 0 : { *(.debug_abbrev) } AT>glob - .debug_line 0 : { *(.debug_line) } AT>glob - .debug_frame 0 : { *(.debug_frame) } AT>glob - .debug_str 0 : { *(.debug_str) } AT>glob - .debug_loc 0 : { *(.debug_loc) } AT>glob - .debug_macinfo 0 : { *(.debug_macinfo) } AT>glob + .debug_info 0 : { *(.debug_info) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } }