From: dons Date: Tue, 4 Nov 2003 00:38:34 +0000 (+0000) Subject: [project @ 2003-11-04 00:38:34 by dons] X-Git-Tag: Approx_11550_changesets_converted~280 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=7ff3d6a07f27b854e0d4b54ba8aa0b3c5ffc81a5 [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. --- 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;