From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E7261584AD for ; Thu, 08 May 2025 06:23:35 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1DC9934302F for ; Thu, 08 May 2025 06:23:35 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 18C271103C0; Thu, 08 May 2025 06:23:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 0ADBF110278 for ; Thu, 08 May 2025 06:23:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2D9034302F for ; Thu, 08 May 2025 06:23:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26EAF10D4 for ; Thu, 08 May 2025 06:23:32 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1746685295.b2d68e3a4bae7c7b144fabe58efdccf68c862628.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/binutils-libs/binutils-libs-2.44-r1.ebuild sys-libs/binutils-libs/binutils-libs-9999.ebuild X-VCS-Directories: sys-libs/binutils-libs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b2d68e3a4bae7c7b144fabe58efdccf68c862628 X-VCS-Branch: master Date: Thu, 08 May 2025 06:23:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2b63ae28-517f-473e-8bf3-3584f113e806 X-Archives-Hash: c9aa996543bf4267d19d3216c50f86b9 commit: b2d68e3a4bae7c7b144fabe58efdccf68c862628 Author: Sam James gentoo org> AuthorDate: Thu May 8 06:21:35 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 8 06:21:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d68e3a sys-libs/binutils-libs: always guarantee fat LTO objects I was preoccupied earlier by the test issue. libiberty.a is always installed, regardless of USE=startic-libs, so we need to always call lto-guarantee-fat. Pointed out by Eli. Bug: https://bugs.gentoo.org/924360 Fixes: a00c963757178daa0cd775d36f6fa5443516a29b Signed-off-by: Sam James gentoo.org> sys-libs/binutils-libs/binutils-libs-2.44-r1.ebuild | 2 +- sys-libs/binutils-libs/binutils-libs-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-libs/binutils-libs/binutils-libs-2.44-r1.ebuild b/sys-libs/binutils-libs/binutils-libs-2.44-r1.ebuild index c1b0d5301fea..990df14b5832 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.44-r1.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.44-r1.ebuild @@ -126,7 +126,7 @@ pkgversion() { } src_configure() { - use static-libs && lto-guarantee-fat + lto-guarantee-fat multilib-minimal_src_configure } diff --git a/sys-libs/binutils-libs/binutils-libs-9999.ebuild b/sys-libs/binutils-libs/binutils-libs-9999.ebuild index d9210a6401ad..9b8bfbc90fc9 100644 --- a/sys-libs/binutils-libs/binutils-libs-9999.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-9999.ebuild @@ -126,7 +126,7 @@ pkgversion() { } src_configure() { - use static-libs && lto-guarantee-fat + lto-guarantee-fat multilib-minimal_src_configure }