summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-11-09 22:31:47 +0700
committerMike Frysinger <vapier@gentoo.org>2022-11-09 22:34:16 +0700
commitadcc07b94f93caa91269bebb540e3d57ddf5c430 (patch)
tree6d531436d74121a5dbe33467d6afe7b370c0891e
parent47c0279b2ca36fd79ad4ce8601103623a92161ae (diff)
downloadbinutils-gdb-adcc07b94f93caa91269bebb540e3d57ddf5c430.tar.gz
sim: ppc: drop useless linking of helper tools
We've never run these helper programs directly. The igen program includes the relevant source files directly and runs the code that way. So stop wasting developer CPU time linking programs that are never run. We leave the rules in place for people who need to test and debug the specific bits of code every now & then.
-rw-r--r--sim/ppc/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in
index cb1a25b4b5e..05f357a31a0 100644
--- a/sim/ppc/Makefile.in
+++ b/sim/ppc/Makefile.in
@@ -607,7 +607,7 @@ tmp-dgen: dgen ppc-spr-table $(srcroot)/move-if-change
$(SILENCE) $(SHELL) $(srcroot)/move-if-change tmp-spreg.c spreg.c
$(SILENCE) touch $@
-tmp-igen: igen $(srcdir)/ppc-instructions $(srcdir)/altivec.igen $(srcdir)/e500.igen $(IGEN_OPCODE_RULES) $(srcroot)/move-if-change tmp-ld-decode tmp-ld-cache tmp-ld-insn tmp-filter
+tmp-igen: igen $(srcdir)/ppc-instructions $(srcdir)/altivec.igen $(srcdir)/e500.igen $(IGEN_OPCODE_RULES) $(srcroot)/move-if-change
$(ECHO_GEN) $(IGEN) $(IGEN_FLAGS) \
-o $(srcdir)/$(IGEN_OPCODE_RULES) \
-I $(srcdir) -i $(srcdir)/ppc-instructions \