More cleanups for gprof, especially with the '386 target.
[deliverable/binutils-gdb.git] / ld / i960.sc-sh
CommitLineData
6ecb2b74
PB
1cat <<EOF
2SECTIONS
3{
4 .text :
5 {
6 ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
7 *(.text)
76971f0d 8 ${RELOCATING+ _etext = .};
6ecb2b74 9 }
d5a13d8e 10 .data SIZEOF(.text) + ADDR(.text):
6ecb2b74
PB
11 {
12 *(.data)
76971f0d 13 ${RELOCATING+ _edata = .};
6ecb2b74 14 }
d5a13d8e 15 .bss SIZEOF(.data) + ADDR(.data):
6ecb2b74 16 {
76971f0d 17 ${RELOCATING+ _bss_start = .};
6ecb2b74
PB
18 *(.bss)
19 *(COMMON)
76971f0d 20 ${RELOCATING+ _end = .};
6ecb2b74
PB
21 }
22}
23EOF
This page took 0.025288 seconds and 4 git commands to generate.