forked from OSchip/llvm-project
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. llvm-svn: 7069
This commit is contained in:
parent
7a4abf89fa
commit
7ace0c39c8
|
@ -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@
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue