OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [ld/] [scripttempl/] [i386coff.sc] - Blame information for rev 145

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 145 khays
# Linker script for 386 COFF.  This works on SVR3.2 and SCO Unix 3.2.2.
2
# Ian Taylor .
3
test -z "$ENTRY" && ENTRY=_start
4
# These are substituted in as variables in order to get '}' in a shell
5
# conditional expansion.
6
INIT='.init : { *(.init) }'
7
FINI='.fini : { *(.fini) }'
8
cat <
9
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
10
${LIB_SEARCH_DIRS}
11
 
12
${RELOCATING+ENTRY (${ENTRY})}
13
 
14
SECTIONS
15
{
16
  .text ${RELOCATING+ SIZEOF_HEADERS} : {
17
    ${RELOCATING+ *(.init)}
18
    *(.text)
19
    ${RELOCATING+ *(.fini)}
20
    ${RELOCATING+ etext  =  .};
21
  }
22
  .data ${RELOCATING+ 0x400000 + (. & 0xffc00fff)} : {
23
    *(.data)
24
    ${RELOCATING+ edata  =  .};
25
  }
26
  .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
27
  {
28
    *(.bss)
29
    *(COMMON)
30
    ${RELOCATING+ end = .};
31
  }
32
  ${RELOCATING- ${INIT}}
33
  ${RELOCATING- ${FINI}}
34
  .stab  0 ${RELOCATING+(NOLOAD)} :
35
  {
36
    [ .stab ]
37
  }
38
  .stabstr  0 ${RELOCATING+(NOLOAD)} :
39
  {
40
    [ .stabstr ]
41
  }
42
}
43
EOF

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.