OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.18.50/] [ld/] [scripttempl/] [m68kaux.sc] - Diff between revs 38 and 156

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 38 Rev 156
# Linker script for A/UX.
# Linker script for A/UX.
test -z "$ENTRY" && ENTRY=_start
test -z "$ENTRY" && ENTRY=_start
INIT='.init : { *(.init) }'
INIT='.init : { *(.init) }'
FINI='.fini : { *(.fini) }'
FINI='.fini : { *(.fini) }'
CTORS='.ctors : { *(.ctors) }'
CTORS='.ctors : { *(.ctors) }'
DTORS='.dtors : { *(.dtors) }'
DTORS='.dtors : { *(.dtors) }'
cat <
cat <
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
${LIB_SEARCH_DIRS}
${LIB_SEARCH_DIRS}
ENTRY(${ENTRY})
ENTRY(${ENTRY})
SECTIONS
SECTIONS
{
{
  .text ${RELOCATING+ $TEXT_START_ADDR} : {
  .text ${RELOCATING+ $TEXT_START_ADDR} : {
    ${RELOCATING+ *(.init)}
    ${RELOCATING+ *(.init)}
    ${RELOCATING+ *(.fini)}
    ${RELOCATING+ *(.fini)}
    *(.text)
    *(.text)
    ${RELOCATING+ . = ALIGN(4);}
    ${RELOCATING+ . = ALIGN(4);}
    ${RELOCATING+ *(.ctors)}
    ${RELOCATING+ *(.ctors)}
    ${RELOCATING+ *(.dtors)}
    ${RELOCATING+ *(.dtors)}
    ${RELOCATING+ etext = .;}
    ${RELOCATING+ etext = .;}
    ${RELOCATING+ _etext = .;}
    ${RELOCATING+ _etext = .;}
  } =0x4E714E71
  } =0x4E714E71
  .data ${RELOCATING+ $DATA_ALIGNMENT} : {
  .data ${RELOCATING+ $DATA_ALIGNMENT} : {
    *(.data)
    *(.data)
    ${RELOCATING+ edata = .;}
    ${RELOCATING+ edata = .;}
    ${RELOCATING+ _edata = .;}
    ${RELOCATING+ _edata = .;}
  }
  }
  .bss : {
  .bss : {
    *(.bss)
    *(.bss)
    *(COMMON)
    *(COMMON)
    ${RELOCATING+ end = .;}
    ${RELOCATING+ end = .;}
    ${RELOCATING+ _end = .;}
    ${RELOCATING+ _end = .;}
  }
  }
  ${RELOCATING- ${INIT}}
  ${RELOCATING- ${INIT}}
  ${RELOCATING- ${FINI}}
  ${RELOCATING- ${FINI}}
  ${RELOCATING- ${CTORS}}
  ${RELOCATING- ${CTORS}}
  ${RELOCATING- ${DTORS}}
  ${RELOCATING- ${DTORS}}
  .comment 0 ${RELOCATING+(NOLOAD)} : { [ .comment ] [ .ident ] }
  .comment 0 ${RELOCATING+(NOLOAD)} : { [ .comment ] [ .ident ] }
  .stab 0 ${RELOCATING+(NOLOAD)} : { [ .stab ] }
  .stab 0 ${RELOCATING+(NOLOAD)} : { [ .stab ] }
  .stabstr 0 ${RELOCATING+(NOLOAD)} : { [ .stabstr ] }
  .stabstr 0 ${RELOCATING+(NOLOAD)} : { [ .stabstr ] }
}
}
EOF
EOF
 
 

powered by: WebSVN 2.1.0

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