summaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-07-02 16:53:44 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-07-02 16:53:44 +0000
commitb103e610cc386f210cc92dc5dc1f0b100f3e6903 (patch)
treec0929aa6ddcfeaa860bbbdcd7c29f4b2ef99a035 /Makefile.config.in
parentea28dd3392a7548b8710475c4b9fe525e76558f0 (diff)
downloadllvm-b103e610cc386f210cc92dc5dc1f0b100f3e6903.tar.gz
llvm-b103e610cc386f210cc92dc5dc1f0b100f3e6903.tar.bz2
llvm-b103e610cc386f210cc92dc5dc1f0b100f3e6903.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index e3fe5218b4..7b53f4bc46 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -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@
#