aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2018-04-16 15:14:19 +0930
committerAlan Modra <amodra@gmail.com>2018-04-16 15:14:19 +0930
commitde96689e03235bfd65a33704a9d398cb666140f4 (patch)
treee28d4c812b81ad5e5a822a08553b14edf9188234 /ld/scripttempl
parent5972ac7375e9b6a6f0c4bdef31d3da574fb1b65e (diff)
downloadfsf-binutils-gdb-de96689e03235bfd65a33704a9d398cb666140f4.zip
fsf-binutils-gdb-de96689e03235bfd65a33704a9d398cb666140f4.tar.gz
fsf-binutils-gdb-de96689e03235bfd65a33704a9d398cb666140f4.tar.bz2
Remove tandem support
bfd/ * config.bfd: Remove tandem support. ld/ * Makefile.am: Remove tandem support. * configure.tgt: Likewise. * emulparams/st2000.sh: Delete. * scripttempl/st2000.sc: Delete. * Makefile.in: Regenerate. * po/BLD-POTFILES.in: Regenerate.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/st2000.sc35
1 files changed, 0 insertions, 35 deletions
diff --git a/ld/scripttempl/st2000.sc b/ld/scripttempl/st2000.sc
deleted file mode 100644
index 331ebd6..0000000
--- a/ld/scripttempl/st2000.sc
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright (C) 2014-2018 Free Software Foundation, Inc.
-#
-# Copying and distribution of this file, with or without modification,
-# are permitted in any medium without royalty provided the copyright
-# notice and this notice are preserved.
-
-cat <<EOF
-/* Copyright (C) 2014-2018 Free Software Foundation, Inc.
-
- Copying and distribution of this script, with or without modification,
- are permitted in any medium without royalty provided the copyright
- notice and this notice are preserved. */
-
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-OUTPUT_ARCH(${ARCH})
-
-SECTIONS
-{
-.text :
- {
- *(.text)
- *(.strings)
- _etext = .;
- *(.data)
- _edata = .;
- *(.bss)
- *(COMMON)
- _end = .;
- }
-}
-EOF
-
-
-
-