aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1999-07-22 01:25:10 +0000
committerIan Lance Taylor <ian@airs.com>1999-07-22 01:25:10 +0000
commitb4089fdd75a051bffc729255e2e383779abbb4ca (patch)
tree60609fd632caf5ac5d4d3b1aae50d423cf659230 /ld/scripttempl
parent8f36e47c100044bdd287a65d39f5a5f39962ba41 (diff)
downloadgdb-b4089fdd75a051bffc729255e2e383779abbb4ca.zip
gdb-b4089fdd75a051bffc729255e2e383779abbb4ca.tar.gz
gdb-b4089fdd75a051bffc729255e2e383779abbb4ca.tar.bz2
1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>
* emulparams/go32.sh: Remove; obsolete. * scripttempl/go32coff.sc: Remove; obsolete.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/go32coff.sc33
1 files changed, 0 insertions, 33 deletions
diff --git a/ld/scripttempl/go32coff.sc b/ld/scripttempl/go32coff.sc
deleted file mode 100644
index 40f6076..0000000
--- a/ld/scripttempl/go32coff.sc
+++ /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