[llvm-commits] CVS: llvm/projects/Stacker/lib/runtime/Makefile
Reid Spencer
reid at x10sys.com
Wed May 31 18:55:39 PDT 2006
Changes in directory llvm/projects/Stacker/lib/runtime:
Makefile updated: 1.4 -> 1.5
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One notable exception: lib/Target/CBackend/Writer.cpp. These warnings are
left on as a reminder to developers to clean them up.
---
Diffs of the changes: (+3 -0)
Makefile | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/projects/Stacker/lib/runtime/Makefile
diff -u llvm/projects/Stacker/lib/runtime/Makefile:1.4 llvm/projects/Stacker/lib/runtime/Makefile:1.5
--- llvm/projects/Stacker/lib/runtime/Makefile:1.4 Sat Dec 4 23:18:16 2004
+++ llvm/projects/Stacker/lib/runtime/Makefile Wed May 31 20:55:21 2006
@@ -12,3 +12,6 @@
MODULE_NAME = stkr_runtime
include $(LEVEL)/Makefile.common
+
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
More information about the llvm-commits
mailing list