WiiUPluginSystem/wups.ld
Maschell 3cc18c2557 [Plugins] Updated the Makefile
- Added some comments
- Linking without --relocatable to check if all symbols can be found
- cleanup
2018-02-11 14:45:20 +01:00

35 lines
336 B
Plaintext

SECTIONS {
.wups.meta : {
*(.wups.meta*)
}
.wups.load : {
*(.wups.load*)
}
.wups.hooks : {
*(.wups.hooks*)
}
.text : {
*(.text*)
}
.sdata : {
*(.sdata*)
}
.data : {
*(.data*)
}
.rodata : {
*(.rodata*)
}
.got2 : {
*(.got2*)
}
.sbss : {
*(.sbss*)
}
.bss : {
*(.bss*)
}
/DISCARD/ : {
*(*)
}
}