commit: 0538461291fdff27fe805d20eea2975ab3a69caf Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Sat Sep 17 06:46:56 2022 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Sat Sep 17 06:50:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05384612
dev-lang/spidermonkey: fix compiling 91.13.0 with rust-1.63 - disabling rust-simd from 91.13.0 - while it may have some performance issues, it doesn't look like upstream is going to patch 91 series anymore. Closes: https://bugs.gentoo.org/870193 Closes: https://github.com/gentoo/gentoo/pull/27085 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> dev-lang/spidermonkey/spidermonkey-91.13.0.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-lang/spidermonkey/spidermonkey-91.13.0.ebuild b/dev-lang/spidermonkey/spidermonkey-91.13.0.ebuild index dce597f04a64..2fda3ea85f49 100644 --- a/dev-lang/spidermonkey/spidermonkey-91.13.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-91.13.0.ebuild @@ -292,9 +292,11 @@ src_configure() { $(use_enable test tests) ) - if ! use x86 && [[ ${CHOST} != armv*h* ]] ; then - myeconfargs+=( --enable-rust-simd ) - fi + # Temporary fix with rust-1.63, bgo#870193 + # 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
