From 3e0ae179d09d4f830334c6eac5957e3156587e6f Mon Sep 17 00:00:00 2001 From: Peter Michael Green Date: Fri, 28 Jul 2023 02:09:12 +0100 Subject: [PATCH] Disable jit. Gbp-Pq: Name disable-jit.patch --- js/moz.configure | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/js/moz.configure b/js/moz.configure index 7a241cac76d..a040b58407f 100644 --- a/js/moz.configure +++ b/js/moz.configure @@ -154,18 +154,18 @@ set_define("ENABLE_RECORD_TUPLE", enable_record_tuple) # ======================================================= @depends(target, "--enable-record-tuple") def jit_default(target, enable_record_tuple): - if enable_record_tuple: - return False - if target.cpu in ( - "x86", - "x86_64", - "arm", - "aarch64", - "mips32", - "mips64", - "loongarch64", - ): - return True + #if enable_record_tuple: + # return False + #if target.cpu in ( + # "x86", + # "x86_64", + # "arm", + # "aarch64", + # "mips32", + # "mips64", + # "loongarch64", + #): + # return True return False -- 2.30.2