diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-12-08 01:48:03 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-12-08 01:48:03 +0000 |
commit | bf48816daf4a917e2b532f54862461125fab44d1 (patch) | |
tree | 24157e27c0666a9401d03379b47029eee99d1ff3 /autoconf | |
parent | 5be6d2af38c29e3653998978345220974cc40c01 (diff) | |
download | external_llvm-bf48816daf4a917e2b532f54862461125fab44d1.zip external_llvm-bf48816daf4a917e2b532f54862461125fab44d1.tar.gz external_llvm-bf48816daf4a917e2b532f54862461125fab44d1.tar.bz2 |
autoconf: Stop lying to me.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index d186b0e..dc0a590 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1156,10 +1156,10 @@ then 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 |