3 /* linker script for generating RISC OS relocatable modules */
5 * The important thing here is that we need the text segment to be at the
6 * start so that the module header ends up in the right place when we
7 * flatten this into a binary file. We also don't bother page-aligning
8 * anything, because RISC OS won't.
15 .text : { *(.text) *(.gnu.warning) }
18 .rodata : { *(.rodata) }
23 .sbss : { *(.sbss) *(.scommon) }
24 .bss : { *(.bss) *(COMMON) }