Fix unexpected failures in the linker testsuite for ARM VxWorks targets.
[external/binutils.git] / ld / testsuite / ld-arm / vxworks1.ld
1 OUTPUT_FORMAT("elf32-littlearm-vxworks", "elf32-bigarm-vxworks",
2               "elf32-littlearm-vxworks")
3 OUTPUT_ARCH(arm)
4
5 SECTIONS
6 {
7   . = 0x80000;
8   .interp : { *(.interp) }
9   .hash : { *(.hash) }
10   .dynsym : { *(.dynsym) }
11   .dynstr : { *(.dynstr) }
12
13   . = ALIGN (0x400);
14   .rela.dyn : { *(.rela.dyn) }
15   .rela.plt : { *(.rela.plt) }
16
17   . = ALIGN (0x400);
18   .plt : { *(.plt) }
19
20   . = ALIGN (0x400);
21   .text : { *(.text) }
22
23   . = ALIGN (0x1000);
24   .dynamic : { *(.dynamic) }
25
26   . = ALIGN (0x400);
27   .got : { *(.got.plt) *(.got) }
28
29   . = ALIGN (0x400);
30   .data : { *(.data) }
31
32   . = ALIGN (0x400);
33   .bss : { *(.bss) *(.dynbss) }
34 }