summaryrefslogtreecommitdiff
path: root/ld/scripttempl/i386msdos.sc
diff options
context:
space:
mode:
Diffstat (limited to 'ld/scripttempl/i386msdos.sc')
-rw-r--r--ld/scripttempl/i386msdos.sc38
1 files changed, 0 insertions, 38 deletions
diff --git a/ld/scripttempl/i386msdos.sc b/ld/scripttempl/i386msdos.sc
deleted file mode 100644
index 4d312e7ff92..00000000000
--- a/ld/scripttempl/i386msdos.sc
+++ /dev/null
@@ -1,38 +0,0 @@
-cat <<EOF
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-OUTPUT_ARCH(${ARCH})
-
-${RELOCATING+${LIB_SEARCH_DIRS}}
-${STACKZERO+${RELOCATING+${STACKZERO}}}
-SECTIONS
-{
- ${RELOCATING+. = ${TEXT_START_ADDR};}
- .text :
- {
- CREATE_OBJECT_SYMBOLS
- *(.text)
- ${RELOCATING+etext = .;}
- ${RELOCATING+_etext = .;}
- ${RELOCATING+__etext = .;}
- }
- .data :
- {
- *(.rodata)
- *(.data)
- ${CONSTRUCTING+CONSTRUCTORS}
- ${RELOCATING+edata = .;}
- ${RELOCATING+_edata = .;}
- ${RELOCATING+__edata = .;}
- }
- .bss :
- {
- ${RELOCATING+ _bss_start = .};
- ${RELOCATING+ __bss_start = .};
- *(.bss)
- *(COMMON)
- ${RELOCATING+end = ALIGN(4) };
- ${RELOCATING+_end = ALIGN(4) };
- ${RELOCATING+__end = ALIGN(4) };
- }
-}
-EOF