diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-12-06 16:45:22 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-12-06 16:45:22 +0100 |
commit | c18392d87d22191584d76f7b4a850eb9508a8f04 (patch) | |
tree | a31b29449dd6f68dd41d55932f4ec1c3d8c51a1c /ld/Makefile.in | |
parent | b6605dddac58805d735211f0d38805bf87b6db04 (diff) | |
download | gdb-c18392d87d22191584d76f7b4a850eb9508a8f04.zip gdb-c18392d87d22191584d76f7b4a850eb9508a8f04.tar.gz gdb-c18392d87d22191584d76f7b4a850eb9508a8f04.tar.bz2 |
Add Visium support to ld
ld/
* configure.tgt: Add Visium support.
* Makefile.am (ALL_EMULATION_SOURCES): Add eelf32visium.c.
(eelf32visium.c): New rule.
* Makefile.in: Regenerate.
* emulparams/elf32visium.sh: New file.
* scripttempl/visium.sc: Likewise.
ld/testsuite/
* lib/ld-lib.exp (check_shared_lib_support): Return 0 for Visium.
* ld-visium/: New directory.
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r-- | ld/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in index 9f56ca1..20d10a1 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -572,6 +572,7 @@ ALL_EMULATION_SOURCES = \ eelf32tilegx_be.c \ eelf32tilepro.c \ eelf32vax.c \ + eelf32visium.c \ eelf32xc16x.c \ eelf32xc16xl.c \ eelf32xc16xs.c \ @@ -1190,6 +1191,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx_be.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilepro.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32vax.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32visium.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16x.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xs.Po@am__quote@ @@ -2672,6 +2674,9 @@ eelf32tilepro.c: $(srcdir)/emulparams/elf32tilepro.sh \ eelf32vax.c: $(srcdir)/emulparams/elf32vax.sh \ $(ELF_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} +eelf32visium.c: $(srcdir)/emulparams/elf32visium.sh \ + $(ELF_DEPS) $(srcdir)/scripttempl/visium.sc ${GEN_DEPENDS} + eelf32xc16x.c: $(srcdir)/emulparams/elf32xc16x.sh \ $(ELF_DEPS) $(srcdir)/emultempl/needrelax.em \ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |