source: binutils/trunk/ld/testsuite/ld-arm/vxworks1.ld@ 1973

Last change on this file since 1973 was 1973, checked in by Silvan Scherrer, 8 years ago

binutils: update trunk to version 2.27

File size: 627 bytes
Line 
1OUTPUT_FORMAT("elf32-littlearm-vxworks", "elf32-bigarm-vxworks",
2 "elf32-littlearm-vxworks")
3OUTPUT_ARCH(arm)
4
5SECTIONS
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}
Note: See TracBrowser for help on using the repository browser.