From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id F0FCB3858D28 for ; Wed, 8 Dec 2021 09:49:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org F0FCB3858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1638956995; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LM25tko3rzzrBP/zhWUOunWnT9zvMqrOB7otDK3gzwg=; b=HkvP64JpaAp+wLaRTSARWowTVt0ypwjBMneVDew3mL47NIv1QnzMGt/cvop+amZGEJePCA 2vNdKRZsQbKxB0ZBNaFbRRO71GBORqS1nak6PB42XDCbm5kFcE4UBmrYF9LC+C3wE8P2UZ zM89qKHd+QlTzLYlNcQe2lUrbze6CA8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-388-g2hQ0h7VNa6wD1UzsRs8QA-1; Wed, 08 Dec 2021 04:49:53 -0500 X-MC-Unique: g2hQ0h7VNa6wD1UzsRs8QA-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 23A971822CE7 for ; Wed, 8 Dec 2021 09:49:53 +0000 (UTC) Received: from calimero.vinschen.de (ovpn-112-13.ams2.redhat.com [10.36.112.13]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EA63C694DE for ; Wed, 8 Dec 2021 09:49:52 +0000 (UTC) Received: by calimero.vinschen.de (Postfix, from userid 500) id 773F7A80D32; Wed, 8 Dec 2021 10:49:51 +0100 (CET) Date: Wed, 8 Dec 2021 10:49:51 +0100 From: Corinna Vinschen To: newlib@sourceware.org Subject: Re: [PATCH] Enable automake silent rules Message-ID: Reply-To: newlib@sourceware.org Mail-Followup-To: newlib@sourceware.org References: <20211207201259.49634-1-jon.turney@dronecode.org.uk> MIME-Version: 1.0 In-Reply-To: <20211207201259.49634-1-jon.turney@dronecode.org.uk> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=vinschen@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.9 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Dec 2021 09:49:57 -0000 On Dec 7 20:12, Jon Turney wrote: > Use AM_SILENT_RULES, to enable automake silent rules (by default), if we > are using a version of automake which supports it (>=1.11). > > Silent rules can be disabled by configuring with '--disable-silent-rules', > or invoking 'make V=1'. > > For ease of reviewing, this patch doesn't contain configure and > Makefile.in regeneration. > > Future work: There are a few compilations which are not silenced by > this, as they use custom rules. > --- > newlib/README | 3 +++ > newlib/acinclude.m4 | 1 + > 2 files changed, 4 insertions(+) > > diff --git a/newlib/README b/newlib/README > index c82bf8b8c..1c0541284 100644 > --- a/newlib/README > +++ b/newlib/README > @@ -127,6 +127,9 @@ directories, you can run `make' on them in parallel (for example, if > they are NFS-mounted on each of the hosts); they will not interfere > with each other. > > + By default, the execution of build rules in `make' is less verbose. > +To disable, run `make V=1'; or use the `--disable-silent-rules’ option > +of `./configure'. > > Specifying names for hosts and targets > ====================================== > diff --git a/newlib/acinclude.m4 b/newlib/acinclude.m4 > index 05e545c9f..42af6b548 100644 > --- a/newlib/acinclude.m4 > +++ b/newlib/acinclude.m4 > @@ -121,6 +121,7 @@ AC_SUBST(newlib_basedir) > AC_CANONICAL_HOST > > AM_INIT_AUTOMAKE([cygnus no-define 1.9.5]) > +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) > > # FIXME: We temporarily define our own version of AC_PROG_CC. This is > # copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We > -- > 2.34.1 Still nice :) Corinna