Tue Mar 30 09:40:25 1993 Steve Chamberlain (sac@thepub.cygnus.com)
[deliverable/binutils-gdb.git] / ld / mips.sc-sh
1 # Linker script for MIPS systems.
2 # Ian Lance Taylor <ian@cygnus.com>.
3 # These variables may be overridden by the emulation file. The
4 # defaults are appropriate for a DECstation running Ultrix.
5 test -z "$ENTRY" && ENTRY=__start
6 test -z "$TEXT_START_ADDR" && TEXT_START_ADDR="0x400000 + SIZEOF_HEADERS"
7 test -z "$DATA_ADDR" && DATA_ADDR=0x10000000
8 test -z "$BSS_VAR" && BSS_VAR=
9 cat <<EOF
10 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
11 ${LIB_SEARCH_DIRS}
12
13 ENTRY(${ENTRY})
14
15 SECTIONS
16 {
17 .text ${RELOCATING+ ${TEXT_START_ADDR}} : {
18 *(.init)
19 ${RELOCATING+ eprol = .};
20 *(.text)
21 *(.fini)
22 ${RELOCATING+ etext = .};
23 }
24 .rdata ${RELOCATING+ ${DATA_ADDR}} : {
25 *(.rdata)
26 }
27 .data ${RELOCATING+ .} : {
28 *(.data)
29 }
30 ${RELOCATING+ _gp = . + 0x8000;}
31 .lit8 ${RELOCATING+ .} : {
32 *(.lit8)
33 }
34 .lit4 ${RELOCATING+ .} : {
35 *(.lit4)
36 }
37 .sdata ${RELOCATING+ .} : {
38 *(.sdata)
39 }
40 ${RELOCATING+ edata = .;}
41 ${BSS_VAR}
42 .sbss ${RELOCATING+ .} : {
43 *(.sbss)
44 *(.scommon)
45 }
46 .bss ${RELOCATING+ .} : {
47 *(.bss)
48 *(COMMON)
49 }
50 ${RELOCATING+ end = .;}
51 }
52 EOF
This page took 0.034052 seconds and 4 git commands to generate.