diff options
author | 2023-10-13 12:32:28 -0400 | |
---|---|---|
committer | 2023-10-13 12:34:23 -0400 | |
commit | 5dbe5492e36a97ee169ed1490d8281691f9cc7dd (patch) | |
tree | 19034f906cedf6ac66f4c1a8a92e5f04ddd0323d /eclass/qt6-build.eclass | |
parent | dev-util/gitlab-runner: drop 16.3.1, 16.4.0 (diff) | |
download | gentoo-5dbe5492e36a97ee169ed1490d8281691f9cc7dd.tar.gz gentoo-5dbe5492e36a97ee169ed1490d8281691f9cc7dd.tar.bz2 gentoo-5dbe5492e36a97ee169ed1490d8281691f9cc7dd.zip |
qt6-build.eclass: extend avx2/fma mismatch workaround to 6.6.0
6.6.0 is lacking qsimd_p.h changes that 6.5.3 had, will be in 6.6.1.
Closes: https://bugs.gentoo.org/915691
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'eclass/qt6-build.eclass')
-rw-r--r-- | eclass/qt6-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index 35a710b86545..6f002bc799ad 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -257,8 +257,8 @@ _qt6-build_match_cpu_flags() { [[ ${intrin} ]] && flags+=( -mno-${intrin} ) done done < <( - # TODO: drop ver_test and ${fma} when <6.5.3 is gone - ver_test ${PV} -ge 6.5.3 && fma= || fma=fma + # TODO: drop ver_test and ${fma} when <6.5.3 and 6.6.0 are gone + ver_test ${PV} -ge 6.5.3 && ver_test ${PV} -ne 6.6.0 && fma= || fma=fma $(tc-getCXX) -E -P ${CXXFLAGS} ${CPPFLAGS} - <<-EOF | tail -n 2 #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include <x86intrin.h> |