2009-04-15 Christophe Lyon <christophe.lyon@st.com>
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arm / arm.ld
CommitLineData
3674e28a
PB
1/* Script for ld testsuite */
2OUTPUT_ARCH(arm)
3ENTRY(_start)
4SECTIONS
5{
6 /* Read-only sections, merged into text segment: */
7 PROVIDE (__executable_start = 0x8000); . = 0x8000;
8 .text :
9 {
10 *(.before)
11 *(.text)
12 *(.after)
39b41c9c 13 *(.glue_7)
845b51d6 14 *(.v4_bx)
3674e28a
PB
15 } =0
16 . = 0x9000;
17 .got : { *(.got) *(.got.plt)}
b6895b4f
PB
18 . = 0x12340000;
19 .far : { *(.far) }
39b41c9c 20 .ARM.attribues 0 : { *(.ARM.atttributes) }
3674e28a 21}
This page took 0.179664 seconds and 4 git commands to generate.