diff options
author | Maciej W. Rozycki <macro@mips.com> | 2018-06-09 01:09:22 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@mips.com> | 2018-06-09 01:09:22 +0100 |
commit | 2f8b83ee9629c41a171d795ff600cccb00e1b119 (patch) | |
tree | ecd8dbd6db3b4e6d4f45f5cbd7cb1c721f26802c | |
parent | 30d42fef63b418428c92f6081172e0e5d62b6d36 (diff) | |
download | gdb-2f8b83ee9629c41a171d795ff600cccb00e1b119.zip gdb-2f8b83ee9629c41a171d795ff600cccb00e1b119.tar.gz gdb-2f8b83ee9629c41a171d795ff600cccb00e1b119.tar.bz2 |
MIPS/LD: Add missing `mips-*-windiss' target emulation dependency
As from commit 2ebd05b80b22 ("MIPS/LD: Correct `mips-*-windiss' target
emulation configuration") we have:
EXTRA_EM_FILE=mipself
in `emulparams/elf32mipswindiss.sh', however no corresponding Makefile
`mipself.em' dependency for `eelf32mipswindiss.c'. Add it.
ld/
* Makefile.am (eelf32mipswindiss.c): Add `mipself.em' dependency.
* Makefile.in: Regenerate.
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/Makefile.am | 2 | ||||
-rw-r--r-- | ld/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index efdd6d7..0aa680f 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2018-06-09 Maciej W. Rozycki <macro@mips.com> + + * Makefile.am (eelf32mipswindiss.c): Add `mipself.em' dependency. + * Makefile.in: Regenerate. + 2018-06-08 H.J. Lu <hongjiu.lu@intel.com> PR ld/23161 diff --git a/ld/Makefile.am b/ld/Makefile.am index f99229a..fcd9083 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -1172,7 +1172,7 @@ eelf32microblaze.c: $(srcdir)/emulparams/elf32microblaze.sh \ $(ELF_DEPS) $(srcdir)/scripttempl/elfmicroblaze.sc ${GEN_DEPENDS} eelf32mipswindiss.c: $(srcdir)/emulparams/elf32mipswindiss.sh $(ELF_DEPS) \ - $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} + $(srcdir)/emultempl/mipself.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} eelf32moxie.c: $(srcdir)/emulparams/elf32moxie.sh \ $(ELF_GEN_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} diff --git a/ld/Makefile.in b/ld/Makefile.in index c655c08..ad65c27 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -2678,7 +2678,7 @@ eelf32microblaze.c: $(srcdir)/emulparams/elf32microblaze.sh \ $(ELF_DEPS) $(srcdir)/scripttempl/elfmicroblaze.sc ${GEN_DEPENDS} eelf32mipswindiss.c: $(srcdir)/emulparams/elf32mipswindiss.sh $(ELF_DEPS) \ - $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} + $(srcdir)/emultempl/mipself.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} eelf32moxie.c: $(srcdir)/emulparams/elf32moxie.sh \ $(ELF_GEN_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |