[llvm-commits] CVS: llvm/utils/TableGen/Makefile

Reid Spencer reid at x10sys.com
Thu Jun 1 11:20:36 PDT 2006



Changes in directory llvm/utils/TableGen:

Makefile updated: 1.17 -> 1.18
---
Log message:

Don't build tblgen with -pedantic or -Wno-long-long


---
Diffs of the changes:  (+4 -0)

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


Index: llvm/utils/TableGen/Makefile
diff -u llvm/utils/TableGen/Makefile:1.17 llvm/utils/TableGen/Makefile:1.18
--- llvm/utils/TableGen/Makefile:1.17	Thu Apr 13 01:27:20 2006
+++ llvm/utils/TableGen/Makefile	Thu Jun  1 13:20:23 2006
@@ -14,6 +14,10 @@
 
 include $(LEVEL)/Makefile.common
 
+# Disable -pedantic for tblgen
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
+
 #
 # Make the source file depend on the header file.  In this way, dependencies
 # (which depend on the source file) won't get generated until bison is done






More information about the llvm-commits mailing list