Removed the CPPFLAGS and CFLAGS variables since the -DHAVE_CONFIG_H messes
authorJohn Criswell <criswell@uiuc.edu>
Wed, 2 Jul 2003 16:53:44 +0000 (16:53 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Wed, 2 Jul 2003 16:53:44 +0000 (16:53 +0000)
up the test suite.  Since all the LLVM software assumes that config.h exists,
we can just do away with it for now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7069 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.config.in

index e3fe5218b48578f8ffac4c9128a29df111f08e45..7b53f4bc468a8f9fe59c2f32c1f3105246980366 100644 (file)
@@ -31,8 +31,13 @@ CC := @CC@
 #
 # Compilation flags for the C and C++ compilers.
 #
-CPPFLAGS+=@DEFS@
-CCFLAGS+=@DEFS@
+
+#
+# Removing the compiler flags for now.  They interfere with the test suite
+# (which has its own autoconf stuff), and we don't use -DHAVE_CONFIG_H anyway.
+#
+#CPPFLAGS+=@DEFS@
+#CCFLAGS+=@DEFS@
 LDFLAGS+=@LDFLAGS@
 
 #