From 7ff3d6a07f27b854e0d4b54ba8aa0b3c5ffc81a5 Mon Sep 17 00:00:00 2001 From: dons Date: Tue, 4 Nov 2003 00:38:34 +0000 Subject: [PATCH] [project @ 2003-11-04 00:38:34 by dons] Error out if user tries to use in-tree GMP on mips. Too many arithmetic errors in the resulting compiler otherwise. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 360b07b..baa2f7d 100644 --- a/configure.ac +++ b/configure.ac @@ -1127,8 +1127,8 @@ if test $HaveLibMingwEx = YES ; then fi if test "$HaveLibGmp" = "NO"; then -if test "$HostArch_CPP" = "ia64"; then -AC_MSG_ERROR([You need to install libgmp (the in-tree version does not work on IA64).]) +if test "$HostArch_CPP" = "ia64" -o "$HostArch_CPP" = "mipseb" ; then +AC_MSG_ERROR([You need to install libgmp (the in-tree version does not work on IA64 or mips64).]) fi; fi; -- 1.7.10.4