]> git.pld-linux.org Git - packages/mozjs38.git/blob - Disable-js-JIT-on-x32.patch
rediff patches
[packages/mozjs38.git] / Disable-js-JIT-on-x32.patch
1 Description: Disable the js JIT on x32.
2 Author: Adam Borowski <kilobyte@angband.pl>
3 Index: mozjs24-24.2.0/js/src/configure.in
4 ===================================================================
5 --- mozjs24-24.2.0.orig/js/src/configure.in
6 +++ mozjs24-24.2.0/js/src/configure.in
7 @@ -2072,6 +2072,8 @@ fi
8  dnl Configure JIT support
9  
10  case "$target" in
11 +x86_64*-gnux32)
12 +    ;;
13  i?86-*)
14      ENABLE_ION=1
15      AC_DEFINE(JS_CPU_X86)
16 --- mozjs-24.2.0/js/src/configure~      2013-12-11 23:23:20.000000000 +0100
17 +++ mozjs-24.2.0/js/src/configure       2015-03-23 22:55:24.995319443 +0100
18 @@ -8243,6 +8243,8 @@
19  
20  
21  case "$target" in
22 +x86_64*-gnux32)
23 +    ;;
24  i?86-*)
25      ENABLE_ION=1
26      cat >> confdefs.pytmp <<\EOF
This page took 0.087684 seconds and 3 git commands to generate.