summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 85c634c5b..54e187aa1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -822,19 +822,19 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
822 # Obtain MIPS ABI 822 # Obtain MIPS ABI
823 case "$host" in 823 case "$host" in
824 mips*) 824 mips*)
825 AC_COMPILE_IFELSE([ 825 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
826#if _MIPS_SIM != _ABIO32 826#if _MIPS_SIM != _ABIO32
827#error 827#error
828#endif 828#endif
829 ],[mips_abi="o32"],[AC_COMPILE_IFELSE([ 829 ]])],[mips_abi="o32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
830#if _MIPS_SIM != _ABIN32 830#if _MIPS_SIM != _ABIN32
831#error 831#error
832#endif 832#endif
833 ],[mips_abi="n32"],[AC_COMPILE_IFELSE([ 833 ]])],[mips_abi="n32"],[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
834#if _MIPS_SIM != _ABI64 834#if _MIPS_SIM != _ABI64
835#error 835#error
836#endif 836#endif
837 ],[mips_abi="n64"],[AC_MSG_ERROR([unknown MIPS ABI]) 837 ]])],[mips_abi="n64"],[AC_MSG_ERROR([unknown MIPS ABI])
838 ]) 838 ])
839 ]) 839 ])
840 ]) 840 ])