diff options
author | Joonas Niilola <juippis@gentoo.org> | 2022-09-22 11:00:53 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-09-22 11:06:42 +0300 |
commit | 0996bae453067163e0c4111a95ccc6025d70f518 (patch) | |
tree | 291180c105e68d2a17ae4f6d3920ea797855e77a /dev-lang | |
parent | sci-mathematics/z3: Stabilize 4.11.2 x86, #872290 (diff) | |
download | gentoo-0996bae453067163e0c4111a95ccc6025d70f518.tar.gz gentoo-0996bae453067163e0c4111a95ccc6025d70f518.tar.bz2 gentoo-0996bae453067163e0c4111a95ccc6025d70f518.zip |
dev-lang/spidermonkey: disable rust-simd on 78
- broken with newer rust versions, may cause performance issues but this
branch is EOL.
Closes: https://bugs.gentoo.org/871972
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/spidermonkey/spidermonkey-78.15.0.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dev-lang/spidermonkey/spidermonkey-78.15.0.ebuild b/dev-lang/spidermonkey/spidermonkey-78.15.0.ebuild index 909743ac2f47..80ef8034aaa8 100644 --- a/dev-lang/spidermonkey/spidermonkey-78.15.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-78.15.0.ebuild @@ -306,9 +306,11 @@ src_configure() { $(use_enable test tests) ) - if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then - myeconfargs+=( --enable-rust-simd ) - fi + # Breaks with newer (1.63+) Rust. + # if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then + # myeconfargs+=( --enable-rust-simd ) + #fi + myeconfargs+=( --disable-rust-simd ) # Modifications to better support ARM, bug 717344 if use cpu_flags_arm_neon ; then |