[llvm-commits] CVS: llvm/tools/llvm2cpp/Makefile
Reid Spencer
reid at x10sys.com
Thu Jun 1 17:39:20 PDT 2006
Changes in directory llvm/tools/llvm2cpp:
Makefile updated: 1.4 -> 1.5
---
Log message:
Suppress -pedantic warnings about print("%a")
---
Diffs of the changes: (+3 -0)
Makefile | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/tools/llvm2cpp/Makefile
diff -u llvm/tools/llvm2cpp/Makefile:1.4 llvm/tools/llvm2cpp/Makefile:1.5
--- llvm/tools/llvm2cpp/Makefile:1.4 Wed May 31 20:30:27 2006
+++ llvm/tools/llvm2cpp/Makefile Thu Jun 1 19:39:08 2006
@@ -12,3 +12,6 @@
LLVMSupport.a LLVMbzip2.a LLVMSystem.a
include $(LEVEL)/Makefile.common
+
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
More information about the llvm-commits
mailing list