diff options
author | Joonas Niilola <juippis@gentoo.org> | 2024-08-15 08:06:29 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-08-15 08:06:29 +0300 |
commit | e4a719d3390f774ca1ab0e3c32b32be2d50c2610 (patch) | |
tree | e97c890aaa2a5092a8f588b791f3dcda5a553898 /www-client | |
parent | xfce-extra/xfce4-notifyd: Bump to 0.9.6 (diff) | |
download | gentoo-e4a719d3390f774ca1ab0e3c32b32be2d50c2610.tar.gz gentoo-e4a719d3390f774ca1ab0e3c32b32be2d50c2610.tar.bz2 gentoo-e4a719d3390f774ca1ab0e3c32b32be2d50c2610.zip |
www-client/firefox: disable jit on riscv, on 129.0.1
Closes: https://bugs.gentoo.org/937867
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/firefox/firefox-129.0.1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www-client/firefox/firefox-129.0.1.ebuild b/www-client/firefox/firefox-129.0.1.ebuild index 60d216dd53e7..ab851377658d 100644 --- a/www-client/firefox/firefox-129.0.1.ebuild +++ b/www-client/firefox/firefox-129.0.1.ebuild @@ -857,9 +857,11 @@ src_configure() { mozconfig_add_options_ac '' --enable-sandbox fi - # Enable JIT on riscv64 explicitly + # Enable JIT on riscv64 explicitly, since it's not activated automatically via "known arches" list. # 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 + # Update 129.0.1: 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" |