aarch64: handle STO_AARCH64_VARIANT_PCS in bfd
[deliverable/binutils-gdb.git] / ld / testsuite / ld-aarch64 / variant_pcs.ld
1 /* Script for .variant_pcs symbol tests. */
2 OUTPUT_ARCH(aarch64)
3 ENTRY(_start)
4 SECTIONS
5 {
6 /* Read-only sections, merged into text segment: */
7 PROVIDE (__executable_start = 0x8000); . = 0x8000;
8 .text :
9 {
10 *(.before)
11 *(.text)
12 *(.after)
13 } =0
14 . = 0x9000;
15 .got : { *(.got) *(.got.plt)}
16 . = 0x10000;
17 .rela.dyn : { *(.rela.ifunc) }
18 . = 0x11000;
19 .rela.plt : { *(.rela.plt) *(.rela.iplt) }
20 . = 0x12340000;
21 .far : { *(.far) }
22 .ARM.attributes 0 : { *(.ARM.atttributes) }
23 }
This page took 0.029881 seconds and 4 git commands to generate.