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 0E2C8158064 for ; Sat, 11 May 2024 02:12:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1304DE29D5; Sat, 11 May 2024 02:12:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBCDFE29D5 for ; Sat, 11 May 2024 02:12:25 +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 E05E8343014 for ; Sat, 11 May 2024 02:12:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28EFE1A4A for ; Sat, 11 May 2024 02:12:23 +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: <1715393473.9b1dea036a1fba87623a59be76dc588595f9c65a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/perl/perl-5.38.2-r5.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9b1dea036a1fba87623a59be76dc588595f9c65a X-VCS-Branch: master Date: Sat, 11 May 2024 02:12:23 +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: 90f0cff1-6dfc-4053-b1d0-4c0ec57842fd X-Archives-Hash: 9136727a118b95c359c454e04d3aaa0c commit: 9b1dea036a1fba87623a59be76dc588595f9c65a Author: Sam James gentoo org> AuthorDate: Sat May 11 02:11:13 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 11 02:11:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b1dea03 dev-lang/perl: filter out -ftrapv People shouldn't really pass -ftrapv in global flags anyway but let's filter out -ftrapv in Perl specifically given we know it requires -fwrapv semantics and it even passes that during the build, but -ftrapv if set by the user will be appended and take precdence... Bug: https://bugs.gentoo.org/928904 Signed-off-by: Sam James gentoo.org> dev-lang/perl/perl-5.38.2-r5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-lang/perl/perl-5.38.2-r5.ebuild b/dev-lang/perl/perl-5.38.2-r5.ebuild index e916a815eb2a..7d4eea184691 100644 --- a/dev-lang/perl/perl-5.38.2-r5.ebuild +++ b/dev-lang/perl/perl-5.38.2-r5.ebuild @@ -563,6 +563,9 @@ src_configure() { # However, the darwin prefix people have no locale.h ... use elibc_glibc && myconf -Ui_xlocale + # Perl relies on -fwrapv semantics + filter-flags -ftrapv + # This flag makes compiling crash in interesting ways filter-flags "-malign-double"