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 87FC6158091 for ; Sat, 21 Jun 2025 19:19:16 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 74189341FA3 for ; Sat, 21 Jun 2025 19:19:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 693621104D9; Sat, 21 Jun 2025 19:19:15 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 5F6C01104D9 for ; Sat, 21 Jun 2025 19:19:15 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0D2AF341F96 for ; Sat, 21 Jun 2025 19:19:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7EE6D2A08 for ; Sat, 21 Jun 2025 19:19:13 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1750533505.9d083bd6d35e93b165e45b9db11a1406be287296.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/clog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/clog/clog-2023.11.04.ebuild X-VCS-Directories: dev-libs/clog/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 9d083bd6d35e93b165e45b9db11a1406be287296 X-VCS-Branch: master Date: Sat, 21 Jun 2025 19:19:13 +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: c9e24b00-5a52-427b-ba56-e828e6959686 X-Archives-Hash: 9bf1cf99446d4abb42deee6237f56e8e commit: 9d083bd6d35e93b165e45b9db11a1406be287296 Author: Alfredo Tupone gentoo org> AuthorDate: Sat Jun 21 19:17:34 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Jun 21 19:18:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d083bd6 dev-libs/clog: fix lto Closes: https://bugs.gentoo.org/958504 Signed-off-by: Alfredo Tupone gentoo.org> dev-libs/clog/clog-2023.11.04.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-libs/clog/clog-2023.11.04.ebuild b/dev-libs/clog/clog-2023.11.04.ebuild index 36bcdfd8131e..90e201f3685a 100644 --- a/dev-libs/clog/clog-2023.11.04.ebuild +++ b/dev-libs/clog/clog-2023.11.04.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cmake +inherit cmake dot-a CommitId=d6860c477c99f1fce9e28eb206891af3c0e1a1d7 @@ -39,6 +39,7 @@ src_prepare() { } src_configure() { + lto-guarantee-fat local mycmakeargs=( -DUSE_SYSTEM_LIBS=ON -DUSE_SYSTEM_GOOGLETEST=ON @@ -46,3 +47,8 @@ src_configure() { ) cmake_src_configure } + +src_install() { + cmake_src_install + strip-lto-bytecode +}