aboutsummaryrefslogtreecommitdiff
path: root/ld/i960.sc-sh
blob: 6d778a69bb7a0e22efc2c5fa2b492eee17d428d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cat <<EOF
SECTIONS
{ 
    .text : 
    { 
	${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
	*(.text) 
	${RELOCATING+ _etext = .};
    }  
    .data :
    { 
 	*(.data) 
	${RELOCATING+ _edata = .};
    }  
    .bss :
    { 
	${RELOCATING+ _bss_start = .};
	*(.bss)	 
	*(COMMON) 
	${RELOCATING+ _end = .};
    } 
} 
EOF