mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
Issue #1542 - IonMonkey: MIPS: Define JS_CODEGEN_MIPSXX by HAVE_64BIT_BUILD.
MIPSXX is required for 64bit build.
This commit is contained in:
parent
6cf6d2da88
commit
91053477ec
1 changed files with 8 additions and 6 deletions
|
|
@ -1774,12 +1774,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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue