(root)/
binutils-2.41/
ld/
testsuite/
ld-aarch64/
bti-far.ld
OUTPUT_ARCH(aarch64)
ENTRY(_start)
SECTIONS
{
  . = 0x10000;
  .rela.plt       : { *(.rela.plt) *(.rela.iplt) }
  . = 0x18000;
  .plt            : { *(.plt) *(.iplt) }
  . = 0x20000;
  .text           : { *(.text) }
  . = 0x30000;
  .got            : { *(.got) *(.got.plt) }
  . = 0x12340000;
  .far            : { *(.far) }
}