previously, configure would die if GCC or ICC was not found. Now it'll

go through, but we do want to know if we're using GCC/ICC since they
share certain funky command line options (for dependency generation
stuff)

llvm-svn: 26198
This commit is contained in:
Duraid Madina 2006-02-15 03:15:55 +00:00
parent 7a6c21ac26
commit 09518d0c73
1 changed files with 0 additions and 11 deletions

View File

@ -412,17 +412,6 @@ case $CC in
;;
esac
if test "$GCC" != "yes" && test "$ICC" != "yes"
then
AC_MSG_ERROR([gcc|icc required but not found])
fi
dnl Ensure that compilation tools are GCC; we use GCC specific extensions
if test "$GXX" != "yes" && test "$IXX" != "yes"
then
AC_MSG_ERROR([g++|icc required but not found])
fi
dnl Verify that GCC is version 3.0 or higher
if test "$GCC" = "yes"
then