From: Simon Marchi via Gdb-patches <gdb-patches@sourceware.org>
To: gdb-patches@sourceware.org
Subject: Re: [PATCH/committed] sim: enable silent rules in common builds
Date: Wed, 16 Jun 2021 11:59:03 -0400 [thread overview]
Message-ID: <6750be05-09e1-e2d8-10be-e085071e540f@polymtl.ca> (raw)
In-Reply-To: <YMgF0zywrZRFHi5R@vapier>
On 2021-06-14 9:43 p.m., Mike Frysinger wrote:
> On 14 Jun 2021 20:53, Simon Marchi via Gdb-patches wrote:
>> On 2021-06-14 8:52 p.m., Mike Frysinger wrote:
>>> On 14 Jun 2021 20:40, Simon Marchi wrote:
>>>> On 2021-06-14 8:02 p.m., Mike Frysinger via Gdb-patches wrote:
>>>>> We only do the common code as automake simplifies the logic.
>>>>
>>>> Are you interested in re-using what is done in GDB? I did this quickly
>>>> to show how it works. It covers maybe 90% of the commands with very little
>>>> effort.
>>>
>>> seems fine if you want to merge it ;)
>>
>> Ok, there's no issue in including the file directly from the gdb directory,
>> the sim/ directory is never released without gdb?
>
> currently not
> -mike
>
Ok, here's what I pushed.
There are still a few non-silent rules, in particular I think we could
say "GEN foo" instead of showing the big shell command that generates
it. But I don't plan on doing it, the patch below already makes the
output easier to follow.
From 7daf500de25c0e93bc70d593a7979657a2d4ceb5 Mon Sep 17 00:00:00 2001
From: Simon Marchi <simon.marchi@polymtl.ca>
Date: Wed, 16 Jun 2021 11:55:53 -0400
Subject: [PATCH] sim: make some rules silent by default in Make-common.in
Use GDB's silent-rules.mk to make some rules silent by default. These
rules cover most of what is built in sim/.
gdb/ChangeLog:
* silent-rules.mk (ECHO_CCLD, ECHO_AR, ECHO_RANLIB): New.
sim/ChangeLog:
* common/Make-common.in (COMPILE, libsim.a, run$(EXEEXT),
gentmap.o, gentmap): Make rules silent.
Change-Id: Idf9ba5beaee10c7c614859ace5fbdcd1de0287db
---
gdb/ChangeLog | 4 ++++
gdb/silent-rules.mk | 3 +++
sim/ChangeLog | 5 +++++
sim/common/Make-common.in | 14 ++++++++------
4 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e841fdaab5e6..2444773bde93 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2021-06-16 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * silent-rules.mk (ECHO_CCLD, ECHO_AR, ECHO_RANLIB): New.
+
2021-06-16 Tom de Vries <tdevries@suse.de>
PR symtab/26327
diff --git a/gdb/silent-rules.mk b/gdb/silent-rules.mk
index 772bd6728be3..97d799bf2ae2 100644
--- a/gdb/silent-rules.mk
+++ b/gdb/silent-rules.mk
@@ -4,6 +4,7 @@ ifeq ($(V),0)
ECHO_CXX = @echo " CXX $@";
ECHO_CC = @echo " CC $@";
ECHO_CXXLD = @echo " CXXLD $@";
+ECHO_CCLD = @echo " CCLD $@";
ECHO_REGDAT = @echo " REGDAT $@";
ECHO_GEN = @echo " GEN $@";
ECHO_GEN_XML_BUILTIN = \
@@ -14,5 +15,7 @@ ECHO_INIT_C = @echo " GEN init.c"
ECHO_SIGN = @echo " SIGN gdb";
ECHO_YACC = @echo " YACC $@";
ECHO_LEX = @echo " LEX $@";
+ECHO_AR = @echo " AR $@";
+ECHO_RANLIB = @echo " RANLIB $@";
SILENCE = @
endif
diff --git a/sim/ChangeLog b/sim/ChangeLog
index 8896c4ca6ea7..109d5d8a9d25 100644
--- a/sim/ChangeLog
+++ b/sim/ChangeLog
@@ -1,3 +1,8 @@
+2021-06-16 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * common/Make-common.in (COMPILE, libsim.a, run$(EXEEXT),
+ gentmap.o, gentmap): Make rules silent.
+
2021-06-16 Mike Frysinger <vapier@gentoo.org>
* m4/sim_ac_common.m4: Delete AC_EXEEXT call.
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in
index 54ac7f40a9c0..0ab9e79e8fdf 100644
--- a/sim/common/Make-common.in
+++ b/sim/common/Make-common.in
@@ -40,6 +40,8 @@ srccom = $(srcdir)/../common
srcroot = $(srcdir)/../..
srcsim = $(srcdir)/..
+include $(srcroot)/gdb/silent-rules.mk
+
# Helper code from gnulib.
GNULIB_PARENT_DIR = ../..
include $(GNULIB_PARENT_DIR)/gnulib/Makefile.gnulib.inc
@@ -111,7 +113,7 @@ depcomp = $(SHELL) $(srcroot)/depcomp
# GNU make is used. The overrides implement dependency tracking.
COMPILE.pre = $(CC) $(C_DIALECT)
COMPILE.post = -c -o $@
-COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
+COMPILE = $(ECHO_CC) $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
POSTCOMPILE = @true
# igen leaks memory, and therefore makes AddressSanitizer unhappy. Disable
@@ -273,11 +275,11 @@ all: libsim.a run$(EXEEXT) .gdbinit
libsim.a: $(LIB_OBJS)
rm -f libsim.a
- $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
- $(RANLIB) libsim.a
+ $(ECHO_AR) $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
+ $(ECHO_RANLIB) $(RANLIB) libsim.a
run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
- $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
+ $(ECHO_CCLD) $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
$(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
# FIXME: Ideally, callback.o and friends live in a library outside of
@@ -286,10 +288,10 @@ run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
# a library).
gentmap.o: Makefile $(srccom)/gentmap.c $(srccom)/nltvals.def
- $(COMPILE_FOR_BUILD) -o $@ -c $(srccom)/gentmap.c $(NL_TARGET)
+ $(ECHO_CC) $(COMPILE_FOR_BUILD) -o $@ -c $(srccom)/gentmap.c $(NL_TARGET)
gentmap: gentmap.o
- $(LINK_FOR_BUILD) $<
+ $(ECHO_CC) $(LINK_FOR_BUILD) $<
targ-vals.h targ-map.c: stamp-tvals
stamp-tvals: gentmap
--
2.32.0
next prev parent reply other threads:[~2021-06-16 15:59 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-15 0:02 Mike Frysinger via Gdb-patches
2021-06-15 0:40 ` Simon Marchi via Gdb-patches
2021-06-15 0:52 ` Mike Frysinger via Gdb-patches
2021-06-15 0:53 ` Simon Marchi via Gdb-patches
2021-06-15 1:43 ` Mike Frysinger via Gdb-patches
2021-06-16 15:59 ` Simon Marchi via Gdb-patches [this message]
2021-06-17 4:22 ` Mike Frysinger via Gdb-patches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6750be05-09e1-e2d8-10be-e085071e540f@polymtl.ca \
--to=gdb-patches@sourceware.org \
--cc=simon.marchi@polymtl.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox