summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorDuraid Madina <duraid@octopus.com.au>2006-02-15 03:15:55 +0000
committerDuraid Madina <duraid@octopus.com.au>2006-02-15 03:15:55 +0000
commit80a8a26d07966097b701794f805826226e694781 (patch)
tree47624e556d8f4608c5508813594401a1ae6927b9 /autoconf
parent2354f5a46b301097c8b952b66875a176bbb9d2f0 (diff)
downloadllvm-80a8a26d07966097b701794f805826226e694781.tar.gz
llvm-80a8a26d07966097b701794f805826226e694781.tar.bz2
llvm-80a8a26d07966097b701794f805826226e694781.tar.xz
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) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac11
1 files changed, 0 insertions, 11 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 3f51f2d103..1895039234 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -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