PR ld/1775
[binutils.git] / ld / testsuite / ld-arm / arm.ld
blob23d914b14fd85a07a6630073d8340070c0d6bc8e
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   } =0
14   . = 0x9000;
15   .got            : { *(.got) *(.got.plt)}