mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-15 18:27:49 +01:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
MEMORY
|
|
{
|
|
region : ORIGIN = 0x40000000, LENGTH = 8M
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : ALIGN (4) { *(.text) } > region
|
|
.rodata : ALIGN (4) { *(.rodata) } > region
|
|
/DISCARD/ : { *(.reginfo) *(.MIPS.abiflags) *(.trampolines) }
|
|
}
|