1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>
* emulparams/go32.sh: Remove; obsolete. * scripttempl/go32coff.sc: Remove; obsolete.
This commit is contained in:
parent
8f36e47c10
commit
b4089fdd75
3 changed files with 3 additions and 42 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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
|
|
@ -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…
Reference in a new issue