From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 30A5E3858D3C; Wed, 9 Nov 2022 15:35:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 30A5E3858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1668008102; bh=j/GOfvE4+WYKuqEYmEAeCjxurbuzWKZPelhgrqyVvR4=; h=From:To:Subject:Date:From; b=DUFy8MrySmG1QwpQQvp4JSJ7Pm0/CAzi/WeJYvleiOY0w+qkBYsCJq0wvN/IEQfJa 6lIjrZ0tVejZZfwhcoCsIjkHgtaK6kpYRyV8qGloZa4Vmm/shHKmzC56iZZA0JR6xa cfKSbL9ZPV4CHXlLXE5A/b9SXH5lgyfnjyEmbGDg= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: gdb-cvs@sourceware.org Subject: [binutils-gdb] sim: ppc: drop useless linking of helper tools X-Act-Checkin: binutils-gdb X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: 47c0279b2ca36fd79ad4ce8601103623a92161ae X-Git-Newrev: adcc07b94f93caa91269bebb540e3d57ddf5c430 Message-Id: <20221109153502.30A5E3858D3C@sourceware.org> Date: Wed, 9 Nov 2022 15:35:02 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dadcc07b94f93= caa91269bebb540e3d57ddf5c430 commit adcc07b94f93caa91269bebb540e3d57ddf5c430 Author: Mike Frysinger Date: Wed Nov 9 22:31:47 2022 +0700 sim: ppc: drop useless linking of helper tools =20 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. Diff: --- sim/ppc/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ =20 -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 \