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 25860158451 for ; Sun, 7 Jan 2024 11:38:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38B842BC0D1; Sun, 7 Jan 2024 11:38:44 +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 20F062BC0D1 for ; Sun, 7 Jan 2024 11:38:44 +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 604EB3432A9 for ; Sun, 7 Jan 2024 11:38:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C371914BD for ; Sun, 7 Jan 2024 11:38:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1704627464.e9276f91166f047f67d5987bf1f7c24f9e1793da.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/pocl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/pocl/pocl-4.0.ebuild X-VCS-Directories: dev-libs/pocl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e9276f91166f047f67d5987bf1f7c24f9e1793da X-VCS-Branch: master Date: Sun, 7 Jan 2024 11:38: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: 7d6231cc-83cb-41a0-84f6-69212494e0d9 X-Archives-Hash: 582810c4ff70cc233b9a64a0796d6c20 commit: e9276f91166f047f67d5987bf1f7c24f9e1793da Author: Michał Górny gentoo org> AuthorDate: Tue Dec 26 16:52:21 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jan 7 11:37:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9276f91 dev-libs/pocl: [QA] Remove invalid USE=lto USE=lto in this package only appends -flto flag. This is not a valid use of the USE flag, as lto in Gentoo is enabled via setting flags manually. Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/34490 Signed-off-by: Michał Górny gentoo.org> dev-libs/pocl/pocl-4.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/pocl/pocl-4.0.ebuild b/dev-libs/pocl/pocl-4.0.ebuild index 2ffb95bda051..e8e313759963 100644 --- a/dev-libs/pocl/pocl-4.0.ebuild +++ b/dev-libs/pocl/pocl-4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,7 +14,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc64" # TODO: hsa tce -IUSE="accel +conformance cuda debug examples float-conversion hardening +hwloc memmanager lto test" +IUSE="accel +conformance cuda debug examples float-conversion hardening +hwloc memmanager test" # Tests not yet passing, fragile in Portage environment(?) RESTRICT="!test? ( test ) test" @@ -69,7 +69,8 @@ src_configure() { -DPOCL_ICD_ABSOLUTE_PATH=ON -DPOCL_INSTALL_PUBLIC_LIBDIR="${EPREFIX}/usr/$(get_libdir)/OpenCL/vendors/pocl" - -DENABLE_IPO=$(usex lto) + # only appends -flto + -DENABLE_IPO=OFF -DENABLE_POCL_BUILDING=ON -DKERNELLIB_HOST_CPU_VARIANTS="${host_cpu_variants}"