commit: 28c721ef45b266dbe9b9c3513070b6d163cb57ec Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Fri Aug 16 13:08:11 2024 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Fri Aug 16 13:08:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c721ef
www-client/firefox: disable jit on riscv, on 128.1.0, for now Bug: https://bugs.gentoo.org/937867 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> www-client/firefox/firefox-128.1.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www-client/firefox/firefox-128.1.0.ebuild b/www-client/firefox/firefox-128.1.0.ebuild index 38d8c7ad75b7..f88b0ca744a5 100644 --- a/www-client/firefox/firefox-128.1.0.ebuild +++ b/www-client/firefox/firefox-128.1.0.ebuild @@ -854,9 +854,10 @@ src_configure() { mozconfig_add_options_ac '' --enable-sandbox fi - # Enable JIT on riscv64 explicitly - # Can be removed once upstream enable it by default in the future. - use riscv && mozconfig_add_options_ac 'Enable JIT for RISC-V 64' --enable-jit + # Enable JIT on riscv64 explicitly, since it's not activated automatically via "known arches" list. + # Update 128.1.0: Disable jit on riscv (this line can be blanked to disable by default), + # bgo#937867. + use riscv && mozconfig_add_options_ac 'Disable JIT for RISC-V 64' --disable-jit if [[ -s "${S}/api-google.key" ]] ; then local key_origin="Gentoo default"
