From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E4D2158043 for ; Fri, 1 Mar 2024 07:55:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2B5AE2A4B; Fri, 1 Mar 2024 07:55:42 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CA42AE2A37 for ; Fri, 1 Mar 2024 07:55:42 +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 07B8F3430FB for ; Fri, 1 Mar 2024 07:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97D9B14EA for ; Fri, 1 Mar 2024 07:55:40 +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: <1709279679.230e670ced81a0257c62cbd6d6f8441158fdcaa5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/lld/lld-17.0.6.ebuild sys-devel/lld/lld-18.1.0_rc3.ebuild sys-devel/lld/lld-18.1.0_rc4.ebuild sys-devel/lld/lld-19.0.0.9999.ebuild sys-devel/lld/lld-19.0.0_pre20240224.ebuild X-VCS-Directories: sys-devel/lld/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 230e670ced81a0257c62cbd6d6f8441158fdcaa5 X-VCS-Branch: master Date: Fri, 1 Mar 2024 07:55:40 +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: 91982fcb-3054-4505-840c-e2aa243f50ae X-Archives-Hash: 0c240743a86e03e7cd3a5cbf78b0dd06 commit: 230e670ced81a0257c62cbd6d6f8441158fdcaa5 Author: Sam James gentoo org> AuthorDate: Fri Mar 1 06:26:20 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 1 07:54:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230e670c sys-devel/lld: filter LTO (ODR violations) Bug: https://github.com/llvm/llvm-project/issues/83529 Closes: https://bugs.gentoo.org/922353 Signed-off-by: Sam James gentoo.org> sys-devel/lld/lld-17.0.6.ebuild | 3 +++ sys-devel/lld/lld-18.1.0_rc3.ebuild | 3 +++ sys-devel/lld/lld-18.1.0_rc4.ebuild | 3 +++ sys-devel/lld/lld-19.0.0.9999.ebuild | 3 +++ sys-devel/lld/lld-19.0.0_pre20240224.ebuild | 3 +++ 5 files changed, 15 insertions(+) diff --git a/sys-devel/lld/lld-17.0.6.ebuild b/sys-devel/lld/lld-17.0.6.ebuild index 628ca40e4df2..6b93f3ac17e8 100644 --- a/sys-devel/lld/lld-17.0.6.ebuild +++ b/sys-devel/lld/lld-17.0.6.ebuild @@ -58,6 +58,9 @@ src_unpack() { } src_configure() { + # ODR violations (https://github.com/llvm/llvm-project/issues/83529, bug #922353) + filter-lto + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" diff --git a/sys-devel/lld/lld-18.1.0_rc3.ebuild b/sys-devel/lld/lld-18.1.0_rc3.ebuild index db957ad1ab9a..5440a5c89919 100644 --- a/sys-devel/lld/lld-18.1.0_rc3.ebuild +++ b/sys-devel/lld/lld-18.1.0_rc3.ebuild @@ -58,6 +58,9 @@ src_unpack() { src_configure() { llvm_prepend_path "${LLVM_MAJOR}" + # ODR violations (https://github.com/llvm/llvm-project/issues/83529, bug #922353) + filter-lto + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" diff --git a/sys-devel/lld/lld-18.1.0_rc4.ebuild b/sys-devel/lld/lld-18.1.0_rc4.ebuild index db957ad1ab9a..5440a5c89919 100644 --- a/sys-devel/lld/lld-18.1.0_rc4.ebuild +++ b/sys-devel/lld/lld-18.1.0_rc4.ebuild @@ -58,6 +58,9 @@ src_unpack() { src_configure() { llvm_prepend_path "${LLVM_MAJOR}" + # ODR violations (https://github.com/llvm/llvm-project/issues/83529, bug #922353) + filter-lto + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" diff --git a/sys-devel/lld/lld-19.0.0.9999.ebuild b/sys-devel/lld/lld-19.0.0.9999.ebuild index db957ad1ab9a..5440a5c89919 100644 --- a/sys-devel/lld/lld-19.0.0.9999.ebuild +++ b/sys-devel/lld/lld-19.0.0.9999.ebuild @@ -58,6 +58,9 @@ src_unpack() { src_configure() { llvm_prepend_path "${LLVM_MAJOR}" + # ODR violations (https://github.com/llvm/llvm-project/issues/83529, bug #922353) + filter-lto + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" diff --git a/sys-devel/lld/lld-19.0.0_pre20240224.ebuild b/sys-devel/lld/lld-19.0.0_pre20240224.ebuild index db957ad1ab9a..5440a5c89919 100644 --- a/sys-devel/lld/lld-19.0.0_pre20240224.ebuild +++ b/sys-devel/lld/lld-19.0.0_pre20240224.ebuild @@ -58,6 +58,9 @@ src_unpack() { src_configure() { llvm_prepend_path "${LLVM_MAJOR}" + # ODR violations (https://github.com/llvm/llvm-project/issues/83529, bug #922353) + filter-lto + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG"