]> git.pld-linux.org Git - packages/mozjs38.git/blame - Disable-js-JIT-on-x32.patch
rediff patches
[packages/mozjs38.git] / Disable-js-JIT-on-x32.patch
CommitLineData
ba14323b
MB
1Description: Disable the js JIT on x32.
2Author: Adam Borowski <kilobyte@angband.pl>
3Index: 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-*)
ba14323b 14 ENABLE_ION=1
ab4cc071 15 AC_DEFINE(JS_CPU_X86)
ba14323b
MB
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-*)
ba14323b 25 ENABLE_ION=1
ab4cc071 26 cat >> confdefs.pytmp <<\EOF
This page took 0.078916 seconds and 4 git commands to generate.