summaryrefslogtreecommitdiff
path: root/ld/scripttempl/i960.sc
diff options
context:
space:
mode:
Diffstat (limited to 'ld/scripttempl/i960.sc')
-rw-r--r--ld/scripttempl/i960.sc25
1 files changed, 0 insertions, 25 deletions
diff --git a/ld/scripttempl/i960.sc b/ld/scripttempl/i960.sc
deleted file mode 100644
index dc335555d7d..00000000000
--- a/ld/scripttempl/i960.sc
+++ /dev/null
@@ -1,25 +0,0 @@
-cat <<EOF
-SECTIONS
-{
- .text :
- {
- ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
- *(.text)
- ${RELOCATING+ _etext = .};
- ${CONSTRUCTING+${COFF_CTORS}}
- }
- .data :
- {
- *(.data)
- ${CONSTRUCTING+CONSTRUCTORS}
- ${RELOCATING+ _edata = .};
- }
- .bss :
- {
- ${RELOCATING+ _bss_start = .};
- *(.bss)
- *(COMMON)
- ${RELOCATING+ _end = .};
- }
-}
-EOF