rename aout-mipsbsd.sc-sh to mipsbsd.sc-sh for 14-char file systems
[deliverable/binutils-gdb.git] / ld / m68kcoff.sc-sh
CommitLineData
ab57b174
ILT
1# This is totally made up, from the a29k stuff. If you know better,
2# tell us about it.
3cat <<EOF
4OUTPUT_FORMAT("${OUTPUT_FORMAT}")
5${LIB_SEARCH_DIRS}
6
7MEMORY {
8 text : ORIGIN = 0x1000000, LENGTH = 0x1000000
9 talias : ORIGIN = 0x2000000, LENGTH = 0x1000000
10 data : ORIGIN = 0x3000000, LENGTH = 0x1000000
11 mstack : ORIGIN = 0x4000000, LENGTH = 0x1000000
12 rstack : ORIGIN = 0x5000000, LENGTH = 0x1000000
13}
14SECTIONS
15{
16 .text : {
17 *(.text)
668f26b5 18 ${RELOCATING+ etext = .};
ab57b174
ILT
19 *(.lit)
20 *(.shdata)
21 } ${RELOCATING+ > text}
22 .shbss SIZEOF(.text) + ADDR(.text) : {
23 *(.shbss)
24 }
25 .talias : { } ${RELOCATING+ > talias}
26 .data : {
27 *(.data)
668f26b5 28 ${RELOCATING+ edata = .};
ab57b174
ILT
29 } ${RELOCATING+ > data}
30 .bss SIZEOF(.data) + ADDR(.data) :
31 {
b5ddf942 32 ${RELOCATING+ __bss_start = .};
ab57b174
ILT
33 *(.bss)
34 *(COMMON)
668f26b5 35 ${RELOCATING+ end = ALIGN(0x8)};
a70947c1 36 ${RELOCATING+ _end = ALIGN(0x8)};
ab57b174
ILT
37 }
38 .mstack : { } ${RELOCATING+ > mstack}
39 .rstack : { } ${RELOCATING+ > rstack}
40}
41EOF
This page took 0.042071 seconds and 4 git commands to generate.