Browse Source

1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>

* emulparams/go32.sh: Remove; obsolete.
	* scripttempl/go32coff.sc: Remove; obsolete.
gdb-premipsmulti-2000-06-06-branch
Ian Lance Taylor 27 years ago
parent
commit
b4089fdd75
  1. 5
      ld/ChangeLog
  2. 7
      ld/emulparams/go32.sh
  3. 33
      ld/scripttempl/go32coff.sc

5
ld/ChangeLog

@ -1,7 +1,8 @@
1999-07-21 Ian Lance Taylor <ian@zembu.com>
1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>
From Mark Elbrecht:
* configure.bat: Remove; obsolete.
* emulparams/go32.sh: Remove; obsolete.
* scripttempl/go32coff.sc: Remove; obsolete.
1999-07-21 H.J. Lu <hjl@gnu.org>

7
ld/emulparams/go32.sh

@ -1,7 +0,0 @@
SCRIPT_NAME=go32coff
OUTPUT_FORMAT="coff-go32"
TEXT_START_ADDR=0x10a8
TARGET_PAGE_SIZE=0x1000
SEGMENT_SIZE=0x1000
NONPAGED_TEXT_START_ADDR=0x0
ARCH=i386

33
ld/scripttempl/go32coff.sc

@ -1,33 +0,0 @@
# 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
Loading…
Cancel
Save