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 F3AA6158064 for ; Thu, 2 May 2024 04:32:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4547DE2ADA; Thu, 2 May 2024 04:32:56 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28687E2ADA for ; Thu, 2 May 2024 04:32:56 +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 3E743343089 for ; Thu, 2 May 2024 04:32:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C501119C6 for ; Thu, 2 May 2024 04:32:51 +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: <1714624291.2343f3907d70a08674be77218f76ede6cb91f7ff.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/roswell/roswell-20.05.14.106.ebuild dev-lisp/roswell/roswell-21.10.14.111.ebuild dev-lisp/roswell/roswell-22.12.14.113.ebuild X-VCS-Directories: dev-lisp/roswell/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2343f3907d70a08674be77218f76ede6cb91f7ff X-VCS-Branch: master Date: Thu, 2 May 2024 04:32:51 +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: e8b97863-28a7-4f05-9a77-04649ca6f93a X-Archives-Hash: 50f36bdd0c845bf92b86198051229f38 commit: 2343f3907d70a08674be77218f76ede6cb91f7ff Author: Eli Schwartz gmail com> AuthorDate: Thu May 2 04:21:39 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 2 04:31:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2343f390 dev-lisp/roswell: mark as LTO-unsafe Listen, I definitely know it's LTO-unsafe. I can't actually get it to compile, but either way, it's definitely LTO-unsafe... The next compilation error is: ``` /usr/lib/gcc/x86_64-pc-linux-gnu/13/../../../../x86_64-pc-linux-gnu/bin/ld: warning: resources.o: missing .note.GNU-stack section implies executable stack /usr/lib/gcc/x86_64-pc-linux-gnu/13/../../../../x86_64-pc-linux-gnu/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker resources.o:(.rsrc$01+0x80): dangerous relocation: R_AMD64_IMAGEBASE with __ImageBase undefined resources.o:(.rsrc$01+0x90): dangerous relocation: R_AMD64_IMAGEBASE with __ImageBase undefined collect2: error: ld returned 1 exit status make[2]: *** [Makefile:436: ros] Error 1 ``` As you can tell from the linker error, it appears to be lisp code... if anyone can figure out why it happens you're welcome to it but I am not spending more time on lisp so this is me backing away now that the LTO bug can be closed. So long! Closes: https://bugs.gentoo.org/856106 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-lisp/roswell/roswell-20.05.14.106.ebuild | 13 +++++++++++-- dev-lisp/roswell/roswell-21.10.14.111.ebuild | 13 +++++++++++-- dev-lisp/roswell/roswell-22.12.14.113.ebuild | 11 ++++++++++- 3 files changed, 32 insertions(+), 5 deletions(-) diff --git a/dev-lisp/roswell/roswell-20.05.14.106.ebuild b/dev-lisp/roswell/roswell-20.05.14.106.ebuild index 76c9e1152f1d..e7f55bcbac23 100644 --- a/dev-lisp/roswell/roswell-20.05.14.106.ebuild +++ b/dev-lisp/roswell/roswell-20.05.14.106.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="A lisp installer and launcher for major environment" HOMEPAGE="https://github.com/roswell/roswell" @@ -20,3 +20,12 @@ src_prepare() { default eautoreconf } + +src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/856106 + # https://github.com/roswell/roswell/issues/584 + filter-lto + + default +} diff --git a/dev-lisp/roswell/roswell-21.10.14.111.ebuild b/dev-lisp/roswell/roswell-21.10.14.111.ebuild index 8dc066c33326..de8998f15f2a 100644 --- a/dev-lisp/roswell/roswell-21.10.14.111.ebuild +++ b/dev-lisp/roswell/roswell-21.10.14.111.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="A lisp installer and launcher for major environment" HOMEPAGE="https://github.com/roswell/roswell" @@ -23,3 +23,12 @@ src_prepare() { default eautoreconf } + +src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/856106 + # https://github.com/roswell/roswell/issues/584 + filter-lto + + default +} diff --git a/dev-lisp/roswell/roswell-22.12.14.113.ebuild b/dev-lisp/roswell/roswell-22.12.14.113.ebuild index e287f778cad6..de8998f15f2a 100644 --- a/dev-lisp/roswell/roswell-22.12.14.113.ebuild +++ b/dev-lisp/roswell/roswell-22.12.14.113.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="A lisp installer and launcher for major environment" HOMEPAGE="https://github.com/roswell/roswell" @@ -23,3 +23,12 @@ src_prepare() { default eautoreconf } + +src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/856106 + # https://github.com/roswell/roswell/issues/584 + filter-lto + + default +}