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 B4196158089 for ; Thu, 7 Sep 2023 22:17:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAD792BC019; Thu, 7 Sep 2023 22:17:02 +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 9B3B72BC019 for ; Thu, 7 Sep 2023 22:17:02 +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 87911335C2E for ; Thu, 7 Sep 2023 22:17:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0C8BFC8 for ; Thu, 7 Sep 2023 22:16:59 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1694124990.6dbf85f4b67761b08c539adf4f25a50c96865a52.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt6-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 6dbf85f4b67761b08c539adf4f25a50c96865a52 X-VCS-Branch: master Date: Thu, 7 Sep 2023 22:16:59 +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: 5503ca46-42da-4045-b5c5-7a30416a7c0a X-Archives-Hash: c018d07fa807254181898303026dfe22 commit: 6dbf85f4b67761b08c539adf4f25a50c96865a52 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Sep 7 22:10:40 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Sep 7 22:16:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dbf85f4 qt6-build.eclass: more aggressively disable cpu flags mismatch Closes: https://bugs.gentoo.org/913843 Signed-off-by: Ionen Wolkens gentoo.org> eclass/qt6-build.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index 0b4ea6a58ce6..28f8d904065d 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -252,7 +252,7 @@ _qt6-build_match_cpu_flags() { while IFS=' ' read -ra intrins; do [[ ${intrins[*]} == *=[^_]* && ${intrins[*]} == *=_* ]] && for intrin in "${intrins[@]}"; do - [[ ${intrin} == *?=[^_]* ]] && flags+=(-mno-${intrin%=*}) + [[ ${intrin} == *?=* ]] && flags+=( -mno-${intrin%=*} ) done done < <( # TODO: review if can drop fma= matching after QTBUG-116357