[llvm-commits] [llvm] r121222 - /llvm/trunk/autoconf/configure.ac
Daniel Dunbar
daniel at zuster.org
Tue Dec 7 17:48:03 PST 2010
Author: ddunbar
Date: Tue Dec 7 19:48:03 2010
New Revision: 121222
URL: http://llvm.org/viewvc/llvm-project?rev=121222&view=rev
Log:
autoconf: Stop lying to me.
Modified:
llvm/trunk/autoconf/configure.ac
Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=121222&r1=121221&r2=121222&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Tue Dec 7 19:48:03 2010
@@ -1156,10 +1156,10 @@
AC_MSG_ERROR([gcc|icc required but not found])
fi
-dnl Ensure that compilation tools are GCC; we use GCC specific extensions
+dnl Ensure that compilation tools are compatible with GCC extensions
if test "$GXX" != "yes" && test "$IXX" != "yes"
then
- AC_MSG_ERROR([g++|icc required but not found])
+ AC_MSG_ERROR([g++|clang++|icc required but not found])
fi
dnl Verify that GCC is version 3.0 or higher
More information about the llvm-commits
mailing list