Changes in directory llvm/lib/System:
Makefile updated: 1.10 -> 1.11 --- 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/lib/System/Makefile diff -u llvm/lib/System/Makefile:1.10 llvm/lib/System/Makefile:1.11 --- llvm/lib/System/Makefile:1.10 Thu Apr 13 01:39:24 2006 +++ llvm/lib/System/Makefile Wed May 31 20:55:21 2006 @@ -14,3 +14,6 @@ EXTRA_DIST = Unix Win32 README.txt include $(LEVEL)/Makefile.common + +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits