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.
This commit is contained in:
Alan Modra 2018-04-16 15:14:19 +09:30
parent 5972ac7375
commit de96689e03
9 changed files with 14 additions and 57 deletions

View File

@ -1,3 +1,7 @@
2018-04-16 Alan Modra <amodra@gmail.com>
* config.bfd: Remove tandem support.
2018-04-16 Alan Modra <amodra@gmail.com>
* Makefile.am: Remove newsos3 support.

View File

@ -110,7 +110,6 @@ case $targ in
we32k-*-* | \
w65-*-* | \
*-*-ieee* | \
*-tandem-* | \
i370-* | \
sh5*-*-* | sh64*-*-* | \
null)
@ -127,6 +126,7 @@ case $targ in
*-adobe-* | \
*-go32-rtems* | \
*-sony-* | \
*-tandem-* | \
*-*-netware* | \
*-*-rtemsaout* | \
*-*-rtemscoff* | \
@ -1797,10 +1797,6 @@ case "${targ}" in
targ_defvec=ieee_vec
;;
*-tandem-*)
targ_defvec=m68k_coff_vec
targ_selvecs=ieee_vec
;;
# END OF targmatch.h
*)
echo 1>&2 "*** BFD does not support target ${targ}."

View File

@ -1,3 +1,12 @@
2018-04-16 Alan Modra <amodra@gmail.com>
* Makefile.am: Remove tandem support.
* configure.tgt: Likewise.
* emulparams/st2000.sh: Delete.
* scripttempl/st2000.sc: Delete.
* Makefile.in: Regenerate.
* po/BLD-POTFILES.in: Regenerate.
2018-04-16 Alan Modra <amodra@gmail.com>
* Makefile.am: Remove newsos3 support.

View File

@ -406,7 +406,6 @@ ALL_EMULATION_SOURCES = \
esparcaout.c \
esparclinux.c \
esparcnbsd.c \
est2000.c \
esun3.c \
esun4.c \
etic30aout.c \
@ -1810,9 +1809,6 @@ esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \
esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
est2000.c: $(srcdir)/emulparams/st2000.sh \
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
esun3.c: $(srcdir)/emulparams/sun3.sh \
$(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}

View File

@ -775,7 +775,6 @@ ALL_EMULATION_SOURCES = \
esparcaout.c \
esparclinux.c \
esparcnbsd.c \
est2000.c \
esun3.c \
esun4.c \
etic30aout.c \
@ -1441,7 +1440,6 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esparcaout.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esparclinux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esparcnbsd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/est2000.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esun3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esun4.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic30aout.Po@am__quote@
@ -3365,9 +3363,6 @@ esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \
esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
est2000.c: $(srcdir)/emulparams/st2000.sh \
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
esun3.c: $(srcdir)/emulparams/sun3.sh \
$(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}

View File

@ -864,8 +864,6 @@ z8k-*-coff) targ_emul=z8002; targ_extra_emuls=z8001
;;
*-*-ieee*) targ_emul=vanilla
;;
*-tandem-none) targ_emul=st2000
;;
*)
echo 2>&1 "*** ld does not support target ${targ}"
echo 2>&1 "*** see ld/configure.tgt for supported targets"

View File

@ -1,5 +0,0 @@
SCRIPT_NAME=st2000
OUTPUT_FORMAT="coff-m68k"
TEXT_START_ADDR=0x0
TARGET_PAGE_SIZE=128
ARCH=m68k

View File

@ -328,7 +328,6 @@ eshpe.c
esparcaout.c
esparclinux.c
esparcnbsd.c
est2000.c
esun3.c
esun4.c
etic30aout.c

View File

@ -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