[llvm-commits] CVS: llvm/Makefile.rules

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



Changes in directory llvm:

Makefile.rules updated: 1.375 -> 1.376
---
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 -1)

 Makefile.rules |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.375 llvm/Makefile.rules:1.376
--- llvm/Makefile.rules:1.375	Wed May 31 20:30:26 2006
+++ llvm/Makefile.rules	Wed May 31 20:55:21 2006
@@ -357,7 +357,8 @@
 # Options To Invoke Tools
 #----------------------------------------------------------
 
-CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused 
+CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -Wno-long-long \
+                     -pedantic 
 
 ifeq ($(OS),HP-UX)
   CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE






More information about the llvm-commits mailing list