Have the linker's help text include the default setting of the --hash-style option...
[deliverable/binutils-gdb.git] / ld / testsuite / ld-aarch64 / bti-plt.ld
1 OUTPUT_ARCH(aarch64)
2 ENTRY(_start)
3 SECTIONS
4 {
5 . = 0x10000;
6 .rela.plt : { *(.rela.plt) *(.rela.iplt) }
7 . = 0x18000;
8 .plt : { *(.plt) *(.iplt) }
9 . = 0x20000;
10 .text : { *(.text) }
11 . = 0x28000;
12 .got : { *(.got) *(.got.plt) }
13 .ARM.attributes 0 : { *(.ARM.atttributes) }
14 }
This page took 0.042229 seconds and 4 git commands to generate.