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.am | |
parent | b6605dddac58805d735211f0d38805bf87b6db04 (diff) | |
download | fsf-binutils-gdb-c18392d87d22191584d76f7b4a850eb9508a8f04.zip fsf-binutils-gdb-c18392d87d22191584d76f7b4a850eb9508a8f04.tar.gz fsf-binutils-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.am')
-rw-r--r-- | ld/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am index 9575f1f..3639d50 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -264,6 +264,7 @@ ALL_EMULATION_SOURCES = \ eelf32tilegx_be.c \ eelf32tilepro.c \ eelf32vax.c \ + eelf32visium.c \ eelf32xc16x.c \ eelf32xc16xl.c \ eelf32xc16xs.c \ @@ -1231,6 +1232,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} |