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 424E7158043 for ; Fri, 29 Mar 2024 02:29:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A9822BC026; Fri, 29 Mar 2024 02:28:59 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 75B692BC026 for ; Fri, 29 Mar 2024 02:28:59 +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 5C57A3430A8 for ; Fri, 29 Mar 2024 02:28:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC1FC1605 for ; Fri, 29 Mar 2024 02:28:56 +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: <1711679305.8a06e29b72c23a556efa9cd44ca232bf9d3f16e5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/legion/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/legion/legion-21.09.0-r1.ebuild sys-cluster/legion/legion-23.03.0.ebuild X-VCS-Directories: sys-cluster/legion/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8a06e29b72c23a556efa9cd44ca232bf9d3f16e5 X-VCS-Branch: master Date: Fri, 29 Mar 2024 02:28:56 +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: fa4818bf-8000-4b0f-8483-7ab5aefe4930 X-Archives-Hash: f2b75d15aecd0d41b9ae34545b85f14f commit: 8a06e29b72c23a556efa9cd44ca232bf9d3f16e5 Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 28 06:47:53 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 29 02:28:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a06e29b sys-cluster/legion: mark as LTO-unsafe Intentionally omitted from live ebuild since it works in git master. Closes: https://bugs.gentoo.org/863731 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sys-cluster/legion/legion-21.09.0-r1.ebuild | 7 ++++++- sys-cluster/legion/legion-23.03.0.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/sys-cluster/legion/legion-21.09.0-r1.ebuild b/sys-cluster/legion/legion-21.09.0-r1.ebuild index 188222290cd2..de37914d7dbb 100644 --- a/sys-cluster/legion/legion-21.09.0-r1.ebuild +++ b/sys-cluster/legion/legion-21.09.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake flag-o-matic DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" @@ -29,6 +29,11 @@ DEPEND="examples? ( virtual/mpi[cxx] ) RDEPEND="${DEPEND}" src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/863731 + # Fixed upstream / in live ebuild. + filter-lto + local mycmakeargs=( -DLegion_USE_HWLOC=$(usex hwloc) -DLegion_USE_GASNet=$(usex gasnet) diff --git a/sys-cluster/legion/legion-23.03.0.ebuild b/sys-cluster/legion/legion-23.03.0.ebuild index eba0f71162d1..55259ad9c9a6 100644 --- a/sys-cluster/legion/legion-23.03.0.ebuild +++ b/sys-cluster/legion/legion-23.03.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake flag-o-matic DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" @@ -34,6 +34,11 @@ PATCHES=( ) src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/863731 + # Fixed upstream / in live ebuild. + filter-lto + local mycmakeargs=( -DLegion_USE_HWLOC=$(usex hwloc) -DLegion_USE_GASNet=$(usex gasnet)