remove parentdir support; use INSTALL_XFORM
[deliverable/binutils-gdb.git] / ld / sh.sc-sh
CommitLineData
84d42ddd
SC
1cat <<EOF
2OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3OUTPUT_ARCH(${ARCH})
4
5MEMORY {
68b61e5d 6 ram : o = 0x1000, l = 512k
84d42ddd
SC
7 }
8
9SECTIONS
10{
11.text :
12 {
13 *(.text)
14 *(.strings)
15 ${RELOCATING+ _etext = . ; }
16 } ${RELOCATING+ > ram}
17.data :
18 {
19 *(.data)
20 ${RELOCATING+ _edata = . ; }
21 } ${RELOCATING+ > ram}
22.bss :
23 {
24 ${RELOCATING+ _bss_start = . ;}
25 *(.bss)
26 *(COMMON)
27 ${RELOCATING+ _end = . ; }
28 } ${RELOCATING+ >ram}
29.stack :
30 {
31 ${RELOCATING+ _stack = . ; }
32 *(.stack)
68b61e5d 33 } ${RELOCATING+ > ram}
84d42ddd
SC
34}
35EOF
36
37
38
39
This page took 0.028787 seconds and 4 git commands to generate.