From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7C50615802F for ; Fri, 31 Mar 2023 05:40:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C296E0895; Fri, 31 Mar 2023 05:40:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67D63E0895 for ; Fri, 31 Mar 2023 05:40:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2C4B335C5D for ; Fri, 31 Mar 2023 05:40:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49A088EB for ; Fri, 31 Mar 2023 05:40:22 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1680241077.5995873083cb641b7992d8f82eb1ced0c1e7c187.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-111.0.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 5995873083cb641b7992d8f82eb1ced0c1e7c187 X-VCS-Branch: master Date: Fri, 31 Mar 2023 05:40:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7b60848a-aa70-4837-b159-b92376ee1a94 X-Archives-Hash: f7dfc677aa9af5526030b6da68173a1a commit: 5995873083cb641b7992d8f82eb1ced0c1e7c187 Author: jinqiang zhang 0x0 ee> AuthorDate: Thu Mar 30 12:57:12 2023 +0000 Commit: Yixun Lan gentoo org> CommitDate: Fri Mar 31 05:37:57 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59958730 www-client/firefox: enable jit on riscv Although JIT is still experimental, but works on RISC-V 64, so let's enable it. Note, we can drop this line once upstream enable JIT by default. Signed-off-by: jinqiang zhang 0x0.ee> Signed-off-by: Yixun Lan gentoo.org> www-client/firefox/firefox-111.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www-client/firefox/firefox-111.0.ebuild b/www-client/firefox/firefox-111.0.ebuild index 41c9dc6e3521..9a9e8b44e058 100644 --- a/www-client/firefox/firefox-111.0.ebuild +++ b/www-client/firefox/firefox-111.0.ebuild @@ -797,6 +797,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 + if [[ -s "${S}/api-google.key" ]] ; then local key_origin="Gentoo default" if [[ $(cat "${S}/api-google.key" | md5sum | awk '{ print $1 }') != 709560c02f94b41f9ad2c49207be6c54 ]] ; then