commit: 0996bae453067163e0c4111a95ccc6025d70f518 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Thu Sep 22 08:00:53 2022 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Thu Sep 22 08:06:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0996bae4
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 <AT> gentoo.org> dev-lang/spidermonkey/spidermonkey-78.15.0.ebuild | 8 +++++--- 1 file 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
