From 57b8c4c8581d2d3ffcf3d3a1bb228271cb4d074a Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Sat, 23 Apr 2011 05:15:56 +0000 Subject: * reviewed BooleanSimplification, added documentation & unit test * work around a lexer ambiguity in CVC grammar * add support for tracing antlr parser/lexer * add parsing support for more language features * initial parameterized types parsing work to support Andy's work --- src/parser/Makefile.antlr_tracing | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/parser/Makefile.antlr_tracing (limited to 'src/parser/Makefile.antlr_tracing') diff --git a/src/parser/Makefile.antlr_tracing b/src/parser/Makefile.antlr_tracing new file mode 100644 index 000000000..087554c52 --- /dev/null +++ b/src/parser/Makefile.antlr_tracing @@ -0,0 +1,21 @@ +# -*-makefile-*- +# +# This makefile is included from parser directories in order to +# do antlr tracing. THIS IS VERY MUCH A HACK, and is only enabled +# if CVC4_TRACE_ANTLR is defined (and not 0). In ANTLR 3.2, we +# have to #define +# + +ifeq ($(CVC4_TRACE_ANTLR),) +else + +ifeq ($(CVC4_TRACE_ANTLR),0) +else + +AM_CPPFLAGS += -DCVC4_TRACE_ANTLR +ANTLR_OPTS += -trace + +endif + +endif + -- cgit v1.2.3