From 5c9ed7ef98dda446e01a07c285051fd0e98d43c7 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Mon, 19 Jun 2017 09:59:51 -0700 Subject: Enable and fix warnings for re2c (#509) * Fix argument parsing in FindRE2C to allow multiple flags * Condition enum must be generated by re2c * A couple of characters didn't need to be escaped: / and ^ * ` [^\n]*` allowed empty strings * `<*> [^]` conflicted with similar states in other conditions --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 46317021..8465aba6 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,7 @@ src/prebuilt/wast-parser-gen.cc: src/wast-parser.y bison -o $@ $< --defines=src/prebuilt/wast-parser-gen.hh --report=state src/prebuilt/wast-lexer-gen.cc: src/wast-lexer.cc - re2c --no-generation-date -bc8 -o $@ $< + re2c -W -Werror --no-generation-date -bc8 -o $@ $< # running CMake $(foreach CONFIG,$(CONFIGS), \ -- cgit v1.2.3