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 41AC315802E for ; Sat, 29 Jun 2024 10:55:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D04A2BC016; Sat, 29 Jun 2024 10:55:16 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 5BC612BC016 for ; Sat, 29 Jun 2024 10:55:16 +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 A24B2335DEB for ; Sat, 29 Jun 2024 10:55:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1620D1CE5 for ; Sat, 29 Jun 2024 10:55:14 +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: <1719658397.735129368d5173d2b41df50a7951ca988c22a274.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/ecl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/ecl/ecl-21.2.1-r5.ebuild dev-lisp/ecl/ecl-23.9.9-r1.ebuild dev-lisp/ecl/ecl-24.5.10.ebuild X-VCS-Directories: dev-lisp/ecl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 735129368d5173d2b41df50a7951ca988c22a274 X-VCS-Branch: master Date: Sat, 29 Jun 2024 10:55:14 +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: e67dd97e-6abe-41ac-b010-8d13fdd7099f X-Archives-Hash: 5a5a23492a3245c7c2542daf20333056 commit: 735129368d5173d2b41df50a7951ca988c22a274 Author: Sam James gentoo org> AuthorDate: Sat Jun 29 10:53:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 29 10:53:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73512936 dev-lisp/ecl: filter LTO for GCC bug The code is pretty brittle anyway. Bug: https://gcc.gnu.org/PR114919 Bug: https://bugs.gentoo.org/931081 Signed-off-by: Sam James gentoo.org> dev-lisp/ecl/ecl-21.2.1-r5.ebuild | 6 ++++-- dev-lisp/ecl/ecl-23.9.9-r1.ebuild | 4 +++- dev-lisp/ecl/ecl-24.5.10.ebuild | 4 +++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-lisp/ecl/ecl-21.2.1-r5.ebuild b/dev-lisp/ecl/ecl-21.2.1-r5.ebuild index a12f59e6b270..3d735305d8a2 100644 --- a/dev-lisp/ecl/ecl-21.2.1-r5.ebuild +++ b/dev-lisp/ecl/ecl-21.2.1-r5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit readme.gentoo-r1 +inherit flag-o-matic readme.gentoo-r1 DESCRIPTION="ECL is an embeddable Common Lisp implementation" HOMEPAGE="https://common-lisp.net/project/ecl/" @@ -40,6 +40,8 @@ src_prepare() { } src_configure() { + filter-lto # bug #931081 + econf \ --enable-gmp=system \ --enable-boehm=system \ diff --git a/dev-lisp/ecl/ecl-23.9.9-r1.ebuild b/dev-lisp/ecl/ecl-23.9.9-r1.ebuild index 542b691a6db0..ba0b9418f3ee 100644 --- a/dev-lisp/ecl/ecl-23.9.9-r1.ebuild +++ b/dev-lisp/ecl/ecl-23.9.9-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit readme.gentoo-r1 +inherit flag-o-matic readme.gentoo-r1 DESCRIPTION="ECL is an embeddable Common Lisp implementation" HOMEPAGE="https://common-lisp.net/project/ecl/" @@ -39,6 +39,8 @@ src_prepare() { } src_configure() { + filter-lto # bug #931081 + econf \ --enable-gmp=system \ --enable-boehm=system \ diff --git a/dev-lisp/ecl/ecl-24.5.10.ebuild b/dev-lisp/ecl/ecl-24.5.10.ebuild index 07b7369d78df..c289fe3b035d 100644 --- a/dev-lisp/ecl/ecl-24.5.10.ebuild +++ b/dev-lisp/ecl/ecl-24.5.10.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit readme.gentoo-r1 +inherit flag-o-matic readme.gentoo-r1 DESCRIPTION="ECL is an embeddable Common Lisp implementation" HOMEPAGE="https://common-lisp.net/project/ecl/" @@ -39,6 +39,8 @@ src_prepare() { } src_configure() { + filter-lto # bug #931081 + econf \ --enable-gmp=system \ --enable-boehm=system \