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 0E452158083 for ; Thu, 5 Sep 2024 04:08:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FF09E2A73; Thu, 5 Sep 2024 04:08:40 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1C68FE2A73 for ; Thu, 5 Sep 2024 04:08:40 +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 5A8293430A4 for ; Thu, 5 Sep 2024 04:08:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9C2F1F3A for ; Thu, 5 Sep 2024 04:08:37 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1725509264.628886ee3e4364da8e389ba12b7c980073c6d656.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gprolog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/gprolog/gprolog-1.5.0-r1.ebuild X-VCS-Directories: dev-lang/gprolog/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 628886ee3e4364da8e389ba12b7c980073c6d656 X-VCS-Branch: master Date: Thu, 5 Sep 2024 04:08:37 +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: f906a54f-3f90-436e-bc46-28ded3c3538d X-Archives-Hash: 21922c2f279fd86e0e168fb3867cc44c commit: 628886ee3e4364da8e389ba12b7c980073c6d656 Author: Eli Schwartz gentoo org> AuthorDate: Tue Sep 3 22:21:43 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Thu Sep 5 04:07:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=628886ee dev-lang/gprolog: mark as LTO-unsafe It is using global register variables, and there's a GCC bug that makes this not work with LTO. Closes: https://bugs.gentoo.org/855599 Signed-off-by: Eli Schwartz gentoo.org> dev-lang/gprolog/gprolog-1.5.0-r1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-lang/gprolog/gprolog-1.5.0-r1.ebuild b/dev-lang/gprolog/gprolog-1.5.0-r1.ebuild index bab7b4d79adb..cb842b4a31b1 100644 --- a/dev-lang/gprolog/gprolog-1.5.0-r1.ebuild +++ b/dev-lang/gprolog/gprolog-1.5.0-r1.ebuild @@ -32,6 +32,11 @@ src_prepare() { } src_configure() { + # src/EnginePl/wam_archi.h:64:33: error: global register variable follows a function definition + # https://bugs.gentoo.org/855599 + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68384 + filter-lto + CFLAGS_MACHINE="$(get-flag -march) $(get-flag -mcpu) $(get-flag -mtune)" use debug && append-flags -DDEBUG