[llvm-commits] CVS: llvm/projects/Stacker/lib/compiler/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Fri Jun 2 11:21:23 PDT 2006
Changes in directory llvm/projects/Stacker/lib/compiler:
Makefile updated: 1.7 -> 1.8
---
Log message:
Fix build on systems with broken bison
---
Diffs of the changes: (+5 -0)
Makefile | 5 +++++
1 files changed, 5 insertions(+)
Index: llvm/projects/Stacker/lib/compiler/Makefile
diff -u llvm/projects/Stacker/lib/compiler/Makefile:1.7 llvm/projects/Stacker/lib/compiler/Makefile:1.8
--- llvm/projects/Stacker/lib/compiler/Makefile:1.7 Wed Apr 12 15:55:23 2006
+++ llvm/projects/Stacker/lib/compiler/Makefile Fri Jun 2 13:21:11 2006
@@ -11,4 +11,9 @@
INCLUDES += -DPARSE_DEBUG
endif
+# Disable -pedantic for this library, as bison output isn't necessarily
+# -pedantic clean.
+CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
+CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
+
$(ObjDir)/Lexer.o : $(PROJ_SRC_DIR)/StackerParser.h
More information about the llvm-commits
mailing list