diff options
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], | |||
| 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 |
| 218 | OABI in use. | 218 | OABI 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 | ||