diff options
| author | 2025-08-12 04:35:56 +0100 | |
|---|---|---|
| committer | 2025-08-12 04:41:22 +0100 | |
| commit | 8196f16d2f121d759412d48cc05e1dcdb6049730 (patch) | |
| tree | 6e80862cff94c1c3b82a224fcdfdce2277ae8f8b /dev-db/mariadb/mariadb-10.6.22.ebuild | |
| parent | dev-python/nbxmpp: Enable py3.14 (diff) | |
| download | gentoo-8196f16d2f121d759412d48cc05e1dcdb6049730.tar.gz gentoo-8196f16d2f121d759412d48cc05e1dcdb6049730.tar.bz2 gentoo-8196f16d2f121d759412d48cc05e1dcdb6049730.zip | |
dev-db/mariadb: unconditionally pass -fno-tree-vectorize
Followup to d72826a5df63d0f2a96a15845537a65ce12a04db. Jens reports
in the bug that he sees a crash w/ GCC 15 in my_convert too. It's very
likely the same problem: 15 at least already had some peeling for alignment
changes and we know the code in MariaDB is broken here.
Don't bother conditionalising it on GCC as Clang accepts -fno-tree-vectorize
too and it could show up there too of course as it's UB.
And revbump here as well given it clearly affects real users, not just
those w/ experimental (16) GCC.
Closes: https://bugs.gentoo.org/959423
Signed-off-by: Sam James <[email protected]>
Diffstat (limited to 'dev-db/mariadb/mariadb-10.6.22.ebuild')
| -rw-r--r-- | dev-db/mariadb/mariadb-10.6.22.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-db/mariadb/mariadb-10.6.22.ebuild b/dev-db/mariadb/mariadb-10.6.22.ebuild index 762f9c2b4679..9efb5abd9ad4 100644 --- a/dev-db/mariadb/mariadb-10.6.22.ebuild +++ b/dev-db/mariadb/mariadb-10.6.22.ebuild @@ -316,7 +316,7 @@ src_configure() { append-flags -fno-strict-aliasing # Workaround for bug #959423 (https://jira.mariadb.org/browse/MDEV-37148) - tc-is-gcc && [[ $(gcc-major-version) -eq 16 ]] && append-flags -fno-tree-vectorize + append-flags -fno-tree-vectorize CMAKE_BUILD_TYPE="RelWithDebInfo" |
