From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 45E8C3858D28 for ; Mon, 8 Apr 2024 03:32:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 45E8C3858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 45E8C3858D28 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1712547124; cv=none; b=Xu1QZ/CEBnflyfb3Xi1v5mTe/EMDNYiDJJ0adDpCTX8ttS8AdXd4Ifv73GKNBmjlGjlsa8dxBxwdk4duura1YLGoFfRiE+xbf4HuQKxRchJ7W7qOOqGsxk/HLqfbTYSfziUweuswIIRFlycudrKQtam6Xt28rkOANQ5Moyo5DF4= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1712547124; c=relaxed/simple; bh=PJyo6Df3jSngwq/pi2JnRiqA+BJIjzQfwDB4hmSh8+o=; h=DKIM-Signature:Message-ID:Date:MIME-Version:Subject:To:From; b=aJaFS7Hw+GDFjSPJLnZJr8fZykEkRoxoWdgcJi9WpfVashT1PbBfiBPmFMhcePasUHgzMFE7ehY/5ZoCOGPtYVmikU5FhHHbgF+CRMeDlL2rM9maBQ1wAdCSmwsmeZwm7A6qDnf/dRue+fo+tMWNQHQejgKiWGTLYxcAzYOQNuA= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1712547121; bh=PJyo6Df3jSngwq/pi2JnRiqA+BJIjzQfwDB4hmSh8+o=; h=Date:Subject:To:References:From:In-Reply-To:From; b=DFolTFexom2aPY8rc/zjrAfuVJrj/ZSTAZxT1dFP3XdHDcOBs19+mxgKeEvFfvO40 TtvzYUpHwfna9Jnr8gcSYIngy7/Buxa2ZOvDVwslUWAjfC7ZZkrNyyqLUvsvn7pNmR a6dHr4eqF6MXESfvdLzw2aTphjr9O/juqBzcBDFA= Received: from [10.0.0.11] (modemcable238.237-201-24.mc.videotron.ca [24.201.237.238]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id CE72D1E092; Sun, 7 Apr 2024 23:32:01 -0400 (EDT) Message-ID: Date: Sun, 7 Apr 2024 23:32:01 -0400 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCHv2 6/6] gdb/build: apply silent-rules.mk to the data-directory Makefile.in To: Andrew Burgess , gdb-patches@sourceware.org References: <97d0a17d1cc2414b98d1dd6bd0344748400b30c4.1712422921.git.aburgess@redhat.com> Content-Language: en-US From: Simon Marchi In-Reply-To: <97d0a17d1cc2414b98d1dd6bd0344748400b30c4.1712422921.git.aburgess@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 2024-04-06 13:03, Andrew Burgess wrote: > This commit makes use of gdb/silent-rules.mk in the data-directory > Makefile.in. I've only updated the rules that actually generate > things, I've not touched the install or uninstall rules, this matches > gdb/Makefile.in. When I first worked on adding silent rules, I did the first 80% (most importantly the compilation of C/C++ files). My goal was to be able to kinda see the progress of my build, and that was enough (an output like Ninja does would be awesome, but I don't think that's happening anytime soon). Thanks for working on the other 80%. > I've not managed to completely silence all of the recipe output, the > mkinstalldirs command outputs some diagnostic text which looks like > this: > > GEN stamp-python > mkdir -p -- ./python/gdb > mkdir -p -- ./python/gdb/command > mkdir -p -- ./python/gdb/dap > mkdir -p -- ./python/gdb/function > mkdir -p -- ./python/gdb/printer The output of these targets is a bit funny, "stamp-something". It's as if the stamp file was the final artefact we're interested in, when in fact it's a build system detail. Not a problem for me though. Simon