Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-elf/orphan-region.ld
2023-03-06 14:48:14 +01:00

12 lines
238 B
Plaintext

MEMORY
{
region : ORIGIN = 0x40000000, LENGTH = 8M
}
SECTIONS
{
.text : ALIGN (4) { *(.text) } > region
.rodata : ALIGN (4) { *(.rodata) } > region
/DISCARD/ : { *(.reginfo) *(.MIPS.abiflags) *(.trampolines) *(.riscv.attributes) }
}