Add ability to change linker warning messages into errors when reporting executable...
[binutils-gdb.git] / ld / testsuite / ld-msp430-elf / msp430-no-lower.ld
blobf9a28474c0d44ffc3498fe93c88c0f13dc752850
1 /* Script for ld testsuite */
2 OUTPUT_ARCH(msp430)
3 ENTRY(_start)
5 SECTIONS
7   .text :
8   {
9     PROVIDE (_start = .);
10     . = ALIGN(2);
11     *(.text .stub .text.* .gnu.linkonce.t.* .text:*)
12   }
14   .rodata :
15   {
16     *(.rodata.* .rodata)
17   }
19   .data :
20   {
21     . = ALIGN(2);
22     *(.data.* .data)
23   }
25   .bss :
26   {
27     . = ALIGN(2);
28     *(.bss.* .bss)
29   }
31   .upper.text :
32   {
33     . = ALIGN(2);
34     *(.upper.text.* .upper.text)
35   }
37   .upper.rodata :
38   {
39     . = ALIGN(2);
40     *(.upper.rodata .upper.rodata.*)
41   }
43   .upper.data :
44   {
45     . = ALIGN(2);
46     *(.upper.data .upper.data.*)
47   }
49   .upper.bss :
50   {
51     . = ALIGN(2);
52     *(.upper.bss .upper.bss.*)
53   }