rest of utah changes
[deliverable/binutils-gdb.git] / ld / sa29200.sc-sh
1 cat <<EOF
2 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3 ENTRY(start)
4
5 SECTIONS {
6 .text ${RELOCATING+${TEXT_START_ADDR}} :
7 {
8 *(.text);
9 *(.text1);
10 *(.text2);
11 ${RELOCATING+_etext = .};
12 }
13 .lit . :
14 {
15 *(.lit);
16 ${RELOCATING+_elit = .};
17 }
18 .data . :
19 {
20 *(.data);
21 *(.data1);
22 *(.data2);
23 ${RELOCATING+_edata = .};
24 ${CONSTRUCTING+CONSTRUCTORS}
25 }
26
27 .bss . :
28 {
29 *(COMMON)
30 *(.bss)
31 ${RELOCATING+_end = .};
32 }
33 }
34 EOF
This page took 0.02918 seconds and 4 git commands to generate.