old-cross-binutils/ld/scripttempl/go32coff.sc
Ken Raeburn 0128cbae50 * Makefile.in (check): Add missing "else true" clause.
* emulparams/vax.sh (OUTPUT_FORMAT): Use "a.out".

* scripttempl/go32coff.sc: Changes from DJ Delorie: Change default entry point
to "start".  Align at end of each section to 0x200.  Start .text section 0x1000
later.  Add _etext, _edata, _end symbols.
1994-11-04 00:39:49 +00:00

33 lines
704 B
Scala

# Linker script for 386 go32
# DJ Delorie (dj@ctron.com)
test -z "$ENTRY" && ENTRY=start
cat <<EOF
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
${LIB_SEARCH_DIRS}
ENTRY(${ENTRY})
SECTIONS
{
.text ${RELOCATING+ 0x1000+SIZEOF_HEADERS} : {
*(.text)
${RELOCATING+ etext = . ; _etext = .};
${RELOCATING+ . = ALIGN(0x200);}
}
.data ${RELOCATING+ ${DATA_ALIGNMENT}} : {
${RELOCATING+ *(.ctor)}
${RELOCATING+ *(.dtor)}
*(.data)
${RELOCATING+ edata = . ; _edata = .};
${RELOCATING+ . = ALIGN(0x200);}
}
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
{
*(.bss)
*(COMMON)
${RELOCATING+ end = . ; _end = .};
${RELOCATING+ . = ALIGN(0x200);}
}
}
EOF