summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiaxun Yang <jiaxun.yang@flygoat.com>2020-05-12 12:40:03 +0800
committerMoonchild <moonchild@palemoon.org>2020-05-20 13:59:39 +0000
commit522ec0721a13829746a3f08177bb6da97b31407c (patch)
treec08aadf91464d5c305a8af6ca974843655d4c10a
parent3281b40087015124a0b472ab42cacbbdf55de88e (diff)
downloaduxp-522ec0721a13829746a3f08177bb6da97b31407c.tar.gz
Issue mcp-graveyard/UXP#1542 - IonMonkey: MIPS: Define JS_CODEGEN_MIPSXX by HAVE_64BIT_BUILD.
MIPSXX is required for 64bit build.
-rw-r--r--js/src/old-configure.in14
1 files changed, 8 insertions, 6 deletions
diff --git a/js/src/old-configure.in b/js/src/old-configure.in
index dc3d7da047..246b29652b 100644
--- a/js/src/old-configure.in
+++ b/js/src/old-configure.in
@@ -1764,12 +1764,14 @@ elif test "$CPU_ARCH" = "arm"; then
dnl ARM platforms may trap on unaligned accesses; catch the signal and
dnl recover.
-elif test "$CPU_ARCH" = "mips32"; then
- AC_DEFINE(JS_CODEGEN_MIPS32)
- JS_CODEGEN_MIPS32=1
-elif test "$CPU_ARCH" = "mips64"; then
- AC_DEFINE(JS_CODEGEN_MIPS64)
- JS_CODEGEN_MIPS64=1
+elif test "$CPU_ARCH" = "mips" || test "$CPU_ARCH" = "mips32" || test "$CPU_ARCH" = "mips64"; then
+ if test ! "$HAVE_64BIT_BUILD"; then
+ AC_DEFINE(JS_CODEGEN_MIPS32)
+ JS_CODEGEN_MIPS32=1
+ else
+ AC_DEFINE(JS_CODEGEN_MIPS64)
+ JS_CODEGEN_MIPS64=1
+ fi
fi
AC_SUBST(JS_SIMULATOR)