From: Peter Michael Green Date: Fri, 16 Aug 2024 20:14:34 +0000 (+0000) Subject: Disable jit. X-Git-Tag: archive/raspbian/115.15.0esr-1_deb12u1+rpi1~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=977b09d72e5eec31b68dab00e536db1ee740e979;p=firefox-esr.git Disable jit. Gbp-Pq: Name disable-jit.patch --- diff --git a/js/moz.configure b/js/moz.configure index af11416ec2a..ad8d4753b17 100644 --- a/js/moz.configure +++ b/js/moz.configure @@ -177,18 +177,18 @@ set_define("ENABLE_DECORATORS", enable_decorators) # ======================================================= @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