aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-aarch64/bti-plt.ld
blob: 8682623d69b97cd735a7459838c0ce547723c337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
OUTPUT_ARCH(aarch64)
ENTRY(_start)
SECTIONS
{
  . = 0x10000;
  .rela.plt       : { *(.rela.plt) *(.rela.iplt) }
  . = 0x18000;
  .plt            : { *(.plt) *(.iplt) }
  . = 0x20000;
  .text           : { *(.text) }
  . = 0x28000;
  .got            : { *(.got) *(.got.plt) }
  .ARM.attributes 0 : { *(.ARM.atttributes) }
}