[llvm-commits] CVS: llvm/projects/sample/lib/sample/Makefile

Reid Spencer reid at x10sys.com
Wed May 31 18:55:39 PDT 2006



Changes in directory llvm/projects/sample/lib/sample:

Makefile updated: 1.6 -> 1.7
---
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:  (+2 -0)

 Makefile |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/projects/sample/lib/sample/Makefile
diff -u llvm/projects/sample/lib/sample/Makefile:1.6 llvm/projects/sample/lib/sample/Makefile:1.7
--- llvm/projects/sample/lib/sample/Makefile:1.6	Fri Jan  6 16:51:19 2006
+++ llvm/projects/sample/lib/sample/Makefile	Wed May 31 20:55:21 2006
@@ -19,3 +19,5 @@
 #
 include $(LEVEL)/Makefile.common
 
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))






More information about the llvm-commits mailing list