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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7DEB11581E7 for ; Sat, 27 Apr 2024 05:11:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74871E29ED; Sat, 27 Apr 2024 05:11:49 +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 5270CE29ED for ; Sat, 27 Apr 2024 05:11:49 +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 487BB335C9B for ; Sat, 27 Apr 2024 05:11:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6FCE1710 for ; Sat, 27 Apr 2024 05:11:46 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1714194660.6042d9fb515ff7e2ae89918c8ea1b33f495c382a.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-18.59-r15.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 6042d9fb515ff7e2ae89918c8ea1b33f495c382a X-VCS-Branch: master Date: Sat, 27 Apr 2024 05:11:46 +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: decc5826-383e-414b-9d11-c27203c839cf X-Archives-Hash: 43877c73badbf3d495fb58b3f5bf1cd2 commit: 6042d9fb515ff7e2ae89918c8ea1b33f495c382a Author: Ulrich Müller gentoo org> AuthorDate: Sat Apr 27 05:07:45 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Apr 27 05:11:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6042d9fb app-editors/emacs: Remove -flto from CFLAGS Suggested-by: Sam James gentoo.org> Closes: https://bugs.gentoo.org/924338 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-18.59-r15.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-editors/emacs/emacs-18.59-r15.ebuild b/app-editors/emacs/emacs-18.59-r15.ebuild index 466b031d91a4..87944772b4c2 100644 --- a/app-editors/emacs/emacs-18.59-r15.ebuild +++ b/app-editors/emacs/emacs-18.59-r15.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 @@ -73,12 +73,13 @@ src_configure() { -e "s:-lncurses:$("$(tc-getPKG_CONFIG)" --libs ncurses):" \ src/s-linux.h || die - # -O3 and -finline-functions cause segmentation faults at run time. + # -O3 and -finline-functions cause segmentation faults at run time; + # -flto causes a segmentation fault at compile time. # -Wno-implicit, -Wno-return-type and -Wno-return-mismatch will # quieten newer versions of GCC; feel free to submit a patch adding # all those missing prototypes. strip-flags - filter-flags -finline-functions -fpie + filter-flags -finline-functions -fpie -flto append-flags -fno-strict-aliasing -Wno-implicit -Wno-return-type \ -Wno-return-mismatch append-ldflags $(test-flags -no-pie) #639562