From unknown Fri Jun 20 07:12:56 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#49010 <49010@debbugs.gnu.org> To: bug#49010 <49010@debbugs.gnu.org> Subject: Status: [PATCH core-updates] gnu: custom-gcc: Update regex for removing executables. Reply-To: bug#49010 <49010@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:12:56 +0000 retitle 49010 [PATCH core-updates] gnu: custom-gcc: Update regex for removi= ng executables. reassign 49010 guix-patches submitter 49010 Sarah Morgensen severity 49010 normal tag 49010 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 13 18:28:24 2021 Received: (at submit) by debbugs.gnu.org; 13 Jun 2021 22:28:24 +0000 Received: from localhost ([127.0.0.1]:44529 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsYae-0004mv-AH for submit@debbugs.gnu.org; Sun, 13 Jun 2021 18:28:24 -0400 Received: from lists.gnu.org ([209.51.188.17]:56514) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lsXGJ-0002ou-Ly for submit@debbugs.gnu.org; Sun, 13 Jun 2021 17:03:19 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60236) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lsXGJ-00012p-F7 for guix-patches@gnu.org; Sun, 13 Jun 2021 17:03:19 -0400 Received: from out0.migadu.com ([2001:41d0:2:267::]:25079) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lsXGG-00019Z-VI for guix-patches@gnu.org; Sun, 13 Jun 2021 17:03:19 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mgsn.dev; s=key1; t=1623618192; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=3dniyzsRjks+zPVZxyAgk9M5XrND92yXwE2smgbDfis=; b=OvbBJAkoVAaGUTkUTQjL5iZ2OkSWgNx/MLMMlZCv/dL0Shf9od9ITwGztR08sPVLggQSkq jgRJ2UCpkUBkqwis1pb4wlKatN1Zt0HFHGDd0NZgXSpGZoVNBZVn2FmPfP3EA9h8t/3/UQ LFXkOuW4b8fdMUkMg/7h+o4TAU9EVyo= From: Sarah Morgensen To: guix-patches@gnu.org Subject: [PATCH core-updates] gnu: custom-gcc: Update regex for removing executables. Date: Sun, 13 Jun 2021 14:01:25 -0700 Message-Id: <20210613210125.24907-1-iskarian@mgsn.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: iskarian@mgsn.dev Received-SPF: pass client-ip=2001:41d0:2:267::; envelope-from=iskarian@mgsn.dev; helo=out0.migadu.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 13 Jun 2021 18:28:22 -0400 Cc: Sarah Morgensen X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Do not match "gccgo". Match "gcov-dump" and "gcov-tool", as well as "lto-dump" (which was introduced in GCC 10). * gnu/packages/gcc.scm (custom-gcc)[arguments]: Update regex used for matching broken or conflicting executables. --- gnu/packages/gcc.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 5d114dca87..621b4a1200 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -716,9 +716,10 @@ as the 'native-search-paths' field." `(modify-phases ,phases (add-after 'install 'remove-broken-or-conflicting-files (lambda* (#:key outputs #:allow-other-keys) - (for-each delete-file - (find-files (string-append (assoc-ref outputs "out") "/bin") - ".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|gcc-.*)")))))))))) + (for-each + delete-file + (find-files (string-append (assoc-ref outputs "out") "/bin") + ".*(c\\+\\+|cpp|g\\+\\+|gcov|gcc|lto)(-.*)?$")))))))))) (define %generic-search-paths ;; This is the language-neutral search path for GCC. Entries in $CPATH are -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 05 07:12:46 2021 Received: (at 49010-done) by debbugs.gnu.org; 5 Jul 2021 11:12:46 +0000 Received: from localhost ([127.0.0.1]:44236 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0MWs-00006m-94 for submit@debbugs.gnu.org; Mon, 05 Jul 2021 07:12:46 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54504) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0MWq-00006N-Id for 49010-done@debbugs.gnu.org; Mon, 05 Jul 2021 07:12:44 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:33136) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m0MWl-0002c1-9q; Mon, 05 Jul 2021 07:12:39 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=42664 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m0MWk-0007Pu-8V; Mon, 05 Jul 2021 07:12:38 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Sarah Morgensen Subject: Re: bug#49010: [PATCH core-updates] gnu: custom-gcc: Update regex for removing executables. References: <20210613210125.24907-1-iskarian@mgsn.dev> Date: Mon, 05 Jul 2021 13:12:35 +0200 In-Reply-To: <20210613210125.24907-1-iskarian@mgsn.dev> (Sarah Morgensen's message of "Sun, 13 Jun 2021 14:01:25 -0700") Message-ID: <87wnq5t3oc.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49010-done Cc: 49010-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Sarah Morgensen skribis: > Do not match "gccgo". Match "gcov-dump" and "gcov-tool", as well as > "lto-dump" (which was introduced in GCC 10). > > * gnu/packages/gcc.scm (custom-gcc)[arguments]: Update regex used for > matching broken or conflicting executables. Applied to =E2=80=98core-updates=E2=80=99. Thanks, and sorry for the delay! Ludo=E2=80=99. From unknown Fri Jun 20 07:12:56 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 02 Aug 2021 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator