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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 657DC1584AD for ; Tue, 06 May 2025 18:00:36 +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)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1FC8E34316D for ; Tue, 06 May 2025 18:00:36 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CE1BA1103AD; Tue, 06 May 2025 18:00:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C976D1103AD for ; Tue, 06 May 2025 18:00:32 +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 86C7A343112 for ; Tue, 06 May 2025 18:00:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D309B10D4 for ; Tue, 06 May 2025 18:00:30 +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: <1746553950.dad013ae4be7f338feee4abb476a4cc97a38f512.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boehm-gc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild X-VCS-Directories: dev-libs/boehm-gc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dad013ae4be7f338feee4abb476a4cc97a38f512 X-VCS-Branch: master Date: Tue, 06 May 2025 18:00:30 +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: 7cf33897-715d-40f1-b351-5390dfc1a901 X-Archives-Hash: d446fae8d58592a5a38d3fb84782438d commit: dad013ae4be7f338feee4abb476a4cc97a38f512 Author: Sam James gentoo org> AuthorDate: Tue May 6 17:52:30 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 6 17:52:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad013ae dev-libs/boehm-gc: use dot-a.eclass ... to avoid installing broken static libraries w/ LTO. Signed-off-by: Sam James gentoo.org> dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild b/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild index c915752a7a69..009372bacf0c 100644 --- a/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild +++ b/dev-libs/boehm-gc/boehm-gc-8.2.8.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit multilib-minimal libtool +inherit dot-a multilib-minimal libtool MY_P="gc-${PV}" @@ -31,6 +31,11 @@ src_prepare() { elibtoolize } +src_configure() { + lto-guarantee-fat + multilib-minimal_src_configure +} + multilib_src_configure() { local config=( --disable-docs @@ -53,4 +58,6 @@ multilib_src_install_all() { find "${ED}" -name '*.la' -delete || die newman doc/gc.man GC_malloc.1 + + strip-lto-bytecode }