mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +01:00
Reorder symbol/string table entries.
This commit is contained in:
parent
086cf3b42f
commit
a582c9b61f
@ -61,9 +61,6 @@ SECTIONS {
|
||||
.dynamic ALIGN(32) : { *(.dynamic) }
|
||||
.got ALIGN(32) : { *(.got) }
|
||||
.comment ALIGN(32) : { *(.comment) }
|
||||
.shstrtab ALIGN(32) : { *(.shstrtab) }
|
||||
.symtab ALIGN(32) : { *(.symtab) }
|
||||
.strtab ALIGN(32) : { *(.strtab) }
|
||||
|
||||
/* Put all dynamic loader relocations into one section */
|
||||
.rela.dyn ALIGN(32) : {
|
||||
@ -103,6 +100,11 @@ SECTIONS {
|
||||
*(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
|
||||
}
|
||||
|
||||
/* Symbol tables */
|
||||
.shstrtab ALIGN(32) : { *(.shstrtab) }
|
||||
.symtab ALIGN(32) : { *(.symtab) }
|
||||
.strtab ALIGN(32) : { *(.strtab) }
|
||||
|
||||
/* Standard data sections */
|
||||
. = ORIGIN(data);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user