[llvm-commits] CVS: llvm/configure

Duraid Madina duraid at octopus.com.au
Tue Feb 14 23:56:51 PST 2006



Changes in directory llvm:

configure updated: 1.210 -> 1.211
---
Log message:

reverting previous change, will add support for other compilers later




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

 configure |   14 ++++++++++++++
 1 files changed, 14 insertions(+)


Index: llvm/configure
diff -u llvm/configure:1.210 llvm/configure:1.211
--- llvm/configure:1.210	Tue Feb 14 21:16:52 2006
+++ llvm/configure	Wed Feb 15 01:56:38 2006
@@ -24870,6 +24870,20 @@
     ;;
 esac
 
+if test "$GCC" != "yes" && test "$ICC" != "yes"
+then
+  { { echo "$as_me:$LINENO: error: gcc|icc required but not found" >&5
+echo "$as_me: error: gcc|icc required but not found" >&2;}
+   { (exit 1); exit 1; }; }
+fi
+
+if test "$GXX" != "yes" && test "$IXX" != "yes"
+then
+  { { echo "$as_me:$LINENO: error: g++|icc required but not found" >&5
+echo "$as_me: error: g++|icc required but not found" >&2;}
+   { (exit 1); exit 1; }; }
+fi
+
 if test "$GCC" = "yes"
 then
   gccmajor=`$CC --version | head -n 1 | sed 's/[^0-9]*\([0-9.]\).*/\1/'`






More information about the llvm-commits mailing list