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 0C87D158083 for ; Tue, 24 Sep 2024 04:01:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D327E2A6A; Tue, 24 Sep 2024 04:01:15 +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 A599DE2A61 for ; Tue, 24 Sep 2024 04:01:14 +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 AA82834325F for ; Tue, 24 Sep 2024 04:01:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5A0E26E4 for ; Tue, 24 Sep 2024 04:01:11 +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: <1727150386.875d2538e0cb6ab8d6838f4713b286cdf41845bc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/guile/guile-1.8.8-r4.ebuild dev-scheme/guile/guile-1.8.8-r5.ebuild X-VCS-Directories: dev-scheme/guile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 875d2538e0cb6ab8d6838f4713b286cdf41845bc X-VCS-Branch: master Date: Tue, 24 Sep 2024 04:01:11 +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: 19f3ccf4-ee59-4fa4-90a3-dcb79688f067 X-Archives-Hash: 25119b7a3c9c88600c74c4d886088917 commit: 875d2538e0cb6ab8d6838f4713b286cdf41845bc Author: Kacper Słomiński gmail com> AuthorDate: Mon Sep 23 15:05:13 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 24 03:59:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=875d2538 dev-scheme/guile: Fix filter-flags invocation As per the comment in the ebuild, "filter-flags -ftree-vectorize" doesn't work anymore since compilers will vectorize on their own, without having to be told to do so. Signed-off-by: Kacper Słomiński gmail.com> Closes: https://github.com/gentoo/gentoo/pull/38740 Signed-off-by: Sam James gentoo.org> dev-scheme/guile/{guile-1.8.8-r4.ebuild => guile-1.8.8-r5.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-scheme/guile/guile-1.8.8-r4.ebuild b/dev-scheme/guile/guile-1.8.8-r5.ebuild similarity index 94% rename from dev-scheme/guile/guile-1.8.8-r4.ebuild rename to dev-scheme/guile/guile-1.8.8-r5.ebuild index 5844c16085b0..2bb5c4af7553 100644 --- a/dev-scheme/guile/guile-1.8.8-r4.ebuild +++ b/dev-scheme/guile/guile-1.8.8-r5.ebuild @@ -66,8 +66,9 @@ src_prepare() { } src_configure() { - # see bug #178499 - filter-flags -ftree-vectorize + # See bug #178499. filter-flags no longer works since the compiler + # will vectorize by default when optimizing. + append-flags -fno-tree-vectorize -fno-strict-aliasing #will fail for me if posix is disabled or without modules -- hkBst myconf=(