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)) _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits