[llvm-commits] CVS: llvm/autoconf/configure.ac

Duraid Madina duraid at octopus.com.au
Tue Feb 14 23:57:54 PST 2006



Changes in directory llvm/autoconf:

configure.ac updated: 1.208 -> 1.209
---
Log message:

reverting previous change, will add support for other compilers later




---
Diffs of the changes:  (+11 -0)

 configure.ac |   11 +++++++++++
 1 files changed, 11 insertions(+)


Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.208 llvm/autoconf/configure.ac:1.209
--- llvm/autoconf/configure.ac:1.208	Tue Feb 14 21:15:55 2006
+++ llvm/autoconf/configure.ac	Wed Feb 15 01:57:42 2006
@@ -412,6 +412,17 @@
     ;;
 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