diff options
| author | Po Lu <luangruo@yahoo.com> | 2025-04-15 17:03:57 +0800 |
|---|---|---|
| committer | Po Lu <luangruo@yahoo.com> | 2025-04-15 17:03:57 +0800 |
| commit | 458ad0cb899491da546c06a3f1cd63c0f54623ac (patch) | |
| tree | d06516a375a9b62123d6c9bc03531fb24079008c /exec | |
| parent | 5bf86e2be0693c579a43759fd1da1651344d401e (diff) | |
* exec/configure.ac (exec_CHECK_MIPS_NABI): Test __LP64__ also.
Diffstat (limited to 'exec')
| -rw-r--r-- | exec/configure.ac | 4 |
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], [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <sgidefs.h> ]], [[ -#ifndef __mips64__ +#if !defined __mips64__ && !defined __LP64__ #if _MIPS_SIM == _ABIO32 OABI in use. #endif /* _MIPS_SIM == _ABIO32 */ -#endif /* !__mips64__ */ +#endif /* !__mips64__ && !defined __LP64__ */ ]])], [exec_cv_mips_nabi=yes], [exec_cv_mips_nabi=no])]) |
