diff options
author | Alan Modra <amodra@gmail.com> | 2023-08-26 10:36:54 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-08-26 10:57:00 +0930 |
commit | b8a0c930580775e54bccdfdc77046db74331bad4 (patch) | |
tree | 32dd3fff95f0af843a129e6a9825d93f324f1099 /ld/Makefile.am | |
parent | 7b1fdf17d5a812a929e1eccda3cabb52171160e1 (diff) | |
download | gdb-b8a0c930580775e54bccdfdc77046db74331bad4.zip gdb-b8a0c930580775e54bccdfdc77046db74331bad4.tar.gz gdb-b8a0c930580775e54bccdfdc77046db74331bad4.tar.bz2 |
ld STRINGIFY
Delete support for old compilers that don't support string
concatentation.
* Makefile.am (stringify.sed): Delete rule.
(GEN_DEPENDS, DISTCLEANFILES): Adjust.
* configure.ac (STRINGIFY): Delete.
* emultempl/beos.em: Use stringify.sed from srcdir.
* emultempl/elf.em: Likewise.
* emultempl/generic.em: Likewise.
* emultempl/msp430.em: Likewise.
* emultempl/pdp11.em: Likewise.
* emultempl/pe.em: Likewise.
* emultempl/pep.em: Likewise.
* emultempl/stringify.sed: Renamed from..
* emultempl/astring.sed: ..this.
* emultempl/ostring.sed: Delete.
* Makefile.in: Regenerate.
* configure: Regenerate.
Diffstat (limited to 'ld/Makefile.am')
-rw-r--r-- | ld/Makefile.am | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am index da885b6..49dd3b5 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -623,16 +623,13 @@ ldemul-list.h: Makefile ldscripts/stamp: $(AM_V_GEN)test -d $(@D) || mkdir $(@D); touch $@ -stringify.sed: ${srcdir}/emultempl/$(STRINGIFY) - $(AM_V_GEN)cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed - if AMDEP GENDEPDIR=$(DEPDIR) else GENDEPDIR= endif GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh "${srcdir}" "${libdir}" "${prefix}" "${exec_prefix}" @host@ @target@ @target_alias@ "$(GENDEPDIR)" "${LIB_PATH}" "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@" @use_sysroot@ @enable_initfini_array@ -GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed ldscripts/stamp +GEN_DEPENDS = $(srcdir)/genscripts.sh ldscripts/stamp @TDIRS@ @@ -826,7 +823,7 @@ doc/ld/index.html: ld.texi $(ld_TEXINFOS) $(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \ --split=node -I$(srcdir) $(srcdir)/ld.texi -o doc/ld -DISTCLEANFILES = site.exp development.exp enablings.exp site.bak stringify.sed +DISTCLEANFILES = site.exp development.exp enablings.exp site.bak distclean-local: rm -rf ldscripts |