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

23 lines
381 B
Text

SECTIONS
{
. = 0x20000;
.interp : { *(.interp) }
.hash : { *(.hash) }
.dynsym : { *(.dynsym) }
.dynstr : { *(.dynstr) }
. = ALIGN (0x400);
.rela.plt : { *(.rela.plt) }
. = ALIGN (0x400);
.plt : { *(.plt) }
. = ALIGN (0x400);
.text : { *(.text) }
. = ALIGN (0x10000);
.dynamic : { *(.dynamic) }
. = ALIGN (0x400);
.got : { *(.got.plt) *(.got) }
}