[llvm-commits] CVS: llvm/autoconf/configure.ac
Duraid Madina
duraid at octopus.com.au
Tue Feb 14 19:16:07 PST 2006
Changes in directory llvm/autoconf:
configure.ac updated: 1.207 -> 1.208
---
Log message:
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)
---
Diffs of the changes: (+0 -11)
configure.ac | 11 -----------
1 files changed, 11 deletions(-)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.207 llvm/autoconf/configure.ac:1.208
--- llvm/autoconf/configure.ac:1.207 Sat Feb 4 23:56:51 2006
+++ llvm/autoconf/configure.ac Tue Feb 14 21:15:55 2006
@@ -412,17 +412,6 @@
;;
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
More information about the llvm-commits
mailing list