PR ld/2864, ld/5006
[binutils.git] / ld / testsuite / ld-arm / arm.ld
blobc9e01e65a8228cfe883789f135b3f45a5e170040
1 /* Script for ld testsuite */
2 OUTPUT_ARCH(arm)
3 ENTRY(_start)
4 SECTIONS
6   /* Read-only sections, merged into text segment: */
7   PROVIDE (__executable_start = 0x8000); . = 0x8000;
8   .text           :
9   {
10     *(.before)
11     *(.text)
12     *(.after)
13     *(.glue_7)
14   } =0
15   . = 0x9000;
16   .got            : { *(.got) *(.got.plt)}
17   . = 0x12340000;
18   .far : { *(.far) }
19   .ARM.attribues 0 : { *(.ARM.atttributes) }