* elf32-ppc.c (ppc_elf_check_relocs): Set pointer_equality_needed
[binutils.git] / ld / testsuite / ld-arm / arm.ld
blobcb73fb3b148a05a5e389e1f2a5fad4e8f1a5002c
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     *(.v4_bx)
15   } =0
16   . = 0x9000;
17   .got            : { *(.got) *(.got.plt)}
18   . = 0x12340000;
19   .far : { *(.far) }
20   .ARM.attribues 0 : { *(.ARM.atttributes) }