[llvm-commits] CVS: llvm/Makefile.config.in
John Criswell
criswell at choi.cs.uiuc.edu
Wed Jul 2 11:54:01 PDT 2003
Changes in directory llvm:
Makefile.config.in updated: 1.6 -> 1.7
---
Log message:
Removed the CPPFLAGS and CFLAGS variables since the -DHAVE_CONFIG_H messes
up the test suite. Since all the LLVM software assumes that config.h exists,
we can just do away with it for now.
---
Diffs of the changes:
Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.6 llvm/Makefile.config.in:1.7
--- llvm/Makefile.config.in:1.6 Tue Jul 1 17:07:39 2003
+++ llvm/Makefile.config.in Wed Jul 2 11:53:44 2003
@@ -31,8 +31,13 @@
#
# 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@
#
More information about the llvm-commits
mailing list