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 A5B671580F6 for ; Tue, 20 May 2025 16:28:49 +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 8B72A343122 for ; Tue, 20 May 2025 16:28:49 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8FF411103DD; Tue, 20 May 2025 16:28:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 855FE1103DD for ; Tue, 20 May 2025 16:28:48 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19019343122 for ; Tue, 20 May 2025 16:28:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0B7419E5 for ; Tue, 20 May 2025 16:28:46 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1747758515.f71d64562a603ad98cea1b73410a4d75aea49e78.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xz-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/xz-utils/xz-utils-5.8.1-r1.ebuild X-VCS-Directories: app-arch/xz-utils/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: f71d64562a603ad98cea1b73410a4d75aea49e78 X-VCS-Branch: master Date: Tue, 20 May 2025 16:28:46 +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: eb3a4d76-9ad6-49b4-a690-e761726ee3f3 X-Archives-Hash: 621f588dd079eedb40adc0f521a14cb1 commit: f71d64562a603ad98cea1b73410a4d75aea49e78 Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue May 20 16:27:09 2025 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue May 20 16:28:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71d6456 app-arch/xz-utils: Add workaround for ld.lld related failure Closes: https://bugs.gentoo.org/956119 See-also: https://github.com/tukaani-project/xz/issues/180 Signed-off-by: Andreas K. Hüttel gentoo.org> app-arch/xz-utils/xz-utils-5.8.1-r1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-arch/xz-utils/xz-utils-5.8.1-r1.ebuild b/app-arch/xz-utils/xz-utils-5.8.1-r1.ebuild index dbe8c2b3ca06..21133d9dfaa6 100644 --- a/app-arch/xz-utils/xz-utils-5.8.1-r1.ebuild +++ b/app-arch/xz-utils/xz-utils-5.8.1-r1.ebuild @@ -67,6 +67,11 @@ src_prepare() { src_configure() { use static-libs && lto-guarantee-fat + + if tc-ld-is-lld ; then + export LDFLAGS="${LDFLAGS} -Wl,--undefined-version" + fi + multilib-minimal_src_configure }