summaryrefslogtreecommitdiff
path: root/ld/scripttempl/go32coff.sc
diff options
context:
space:
mode:
Diffstat (limited to 'ld/scripttempl/go32coff.sc')
-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 40f6076345a..00000000000
--- 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