Disable jit.
authorPeter Michael Green <plugwash@raspbian.org>
Wed, 12 Jun 2024 21:58:57 +0000 (21:58 +0000)
committerRaspbian forward porter <root@raspbian.org>
Wed, 12 Jun 2024 21:58:57 +0000 (21:58 +0000)
Gbp-Pq: Name disable-jit.patch

js/moz.configure

index af11416ec2ab5f247d9512e096adf8ef0e73ff9f..ad8d4753b1746730ad43abf938567518036a9a7a 100644 (file)
@@ -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