[llvm-commits] CVS: llvm/Makefile.config.in
John Criswell
criswell at choi.cs.uiuc.edu
Tue Jul 1 10:04:02 PDT 2003
Changes in directory llvm:
Makefile.config.in updated: 1.4 -> 1.5
---
Log message:
The Makefile now adds autoconf information to the compiler and linker flag
variables instead of overwriting those variables. This makes it more flexible
and keeps some of the test Makefiles from breaking.
---
Diffs of the changes:
Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.4 llvm/Makefile.config.in:1.5
--- llvm/Makefile.config.in:1.4 Mon Jun 30 17:41:22 2003
+++ llvm/Makefile.config.in Tue Jul 1 10:02:59 2003
@@ -26,14 +26,14 @@
#
# Compilation flags for the C and C++ compilers.
#
-CPPFLAGS=@DEFS@
-CCFLAGS=@DEFS@
-LDFLAGS=@LDFLAGS@
+CPPFLAGS+=@DEFS@
+CCFLAGS+=@DEFS@
+LDFLAGS+=@LDFLAGS@
#
# Removed since it prevents the tests from working properly.
#
-#LIBS=@LIBS@
+#LIBS+=@LIBS@
#
# Libraries needed by tools
More information about the llvm-commits
mailing list