aboutsummaryrefslogtreecommitdiffstats
path: root/exec/configure.ac
diff options
context:
space:
mode:
authorPo Lu2025-04-15 17:03:57 +0800
committerPo Lu2025-04-15 17:03:57 +0800
commit458ad0cb899491da546c06a3f1cd63c0f54623ac (patch)
treed06516a375a9b62123d6c9bc03531fb24079008c /exec/configure.ac
parent5bf86e2be0693c579a43759fd1da1651344d401e (diff)
downloademacs-458ad0cb899491da546c06a3f1cd63c0f54623ac.tar.gz
emacs-458ad0cb899491da546c06a3f1cd63c0f54623ac.zip
* exec/configure.ac (exec_CHECK_MIPS_NABI): Test __LP64__ also.
Diffstat (limited to 'exec/configure.ac')
-rw-r--r--exec/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/exec/configure.ac b/exec/configure.ac
index d462a25b9d9..3415a0aa91c 100644
--- a/exec/configure.ac
+++ b/exec/configure.ac
@@ -213,11 +213,11 @@ AC_CACHE_CHECK([whether MIPS NABI calling convention is used],
213 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ 213 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
214#include <sgidefs.h> 214#include <sgidefs.h>
215]], [[ 215]], [[
216#ifndef __mips64__ 216#if !defined __mips64__ && !defined __LP64__
217#if _MIPS_SIM == _ABIO32 217#if _MIPS_SIM == _ABIO32
218OABI in use. 218OABI in use.
219#endif /* _MIPS_SIM == _ABIO32 */ 219#endif /* _MIPS_SIM == _ABIO32 */
220#endif /* !__mips64__ */ 220#endif /* !__mips64__ && !defined __LP64__ */
221]])], [exec_cv_mips_nabi=yes], 221]])], [exec_cv_mips_nabi=yes],
222 [exec_cv_mips_nabi=no])]) 222 [exec_cv_mips_nabi=no])])
223 223