mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:24:17 +01:00
Fix .rodata.rplNames being included in .rodata section.
This commit is contained in:
parent
3a32e3383a
commit
756bc99c39
14
rules/rpl.ld
14
rules/rpl.ld
@ -35,13 +35,6 @@ SECTIONS {
|
||||
*(.rplTramp.text)
|
||||
*(SORT(.rplTramp.text.*))
|
||||
}
|
||||
|
||||
/* Standard data sections */
|
||||
. = ORIGIN(data);
|
||||
|
||||
.rodata . : { *(.rodata .rodata.*) }
|
||||
.data . : { *(.data) }
|
||||
.bss . : { *(.bss) }
|
||||
|
||||
/* System stuff is for our elf2rpl converter to go through */
|
||||
. = ORIGIN(system);
|
||||
@ -63,4 +56,11 @@ SECTIONS {
|
||||
* uint32_t trampAddress
|
||||
*/
|
||||
.data.rplFuncStubs . : { KEEP (*(.data.rplFuncStubs)) }
|
||||
|
||||
/* Standard data sections */
|
||||
. = ORIGIN(data);
|
||||
|
||||
.rodata . : { *(.rodata .rodata.*) }
|
||||
.data . : { *(.data) }
|
||||
.bss . : { *(.bss) }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user