1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>
authorIan Lance Taylor <ian@airs.com>
Thu, 22 Jul 1999 01:25:10 +0000 (01:25 +0000)
committerIan Lance Taylor <ian@airs.com>
Thu, 22 Jul 1999 01:25:10 +0000 (01:25 +0000)
* emulparams/go32.sh: Remove; obsolete.
* scripttempl/go32coff.sc: Remove; obsolete.

ld/ChangeLog
ld/emulparams/go32.sh [deleted file]
ld/scripttempl/go32coff.sc [deleted file]

index a51f37e17187b67f5a6857330a5233037624d93d..7174955a79af7b3f82ff274795efe129ff409fe9 100644 (file)
@@ -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>
 
diff --git a/ld/emulparams/go32.sh b/ld/emulparams/go32.sh
deleted file mode 100644 (file)
index d13357f..0000000
+++ /dev/null
@@ -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
diff --git a/ld/scripttempl/go32coff.sc b/ld/scripttempl/go32coff.sc
deleted file mode 100644 (file)
index 40f6076..0000000
+++ /dev/null
@@ -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
This page took 0.031404 seconds and 4 git commands to generate.