summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-06-19 09:59:51 -0700
committerGitHub <noreply@github.com>2017-06-19 09:59:51 -0700
commit5c9ed7ef98dda446e01a07c285051fd0e98d43c7 (patch)
treeec2656a372643493370501ced52868d00fcd8c31 /Makefile
parent0f700c65f819e593a814c6b71585cf7c7f5415bc (diff)
downloadwabt-5c9ed7ef98dda446e01a07c285051fd0e98d43c7.tar.gz
wabt-5c9ed7ef98dda446e01a07c285051fd0e98d43c7.tar.bz2
wabt-5c9ed7ef98dda446e01a07c285051fd0e98d43c7.zip
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 ^ * `<LINE_COMMENT> [^\n]*` allowed empty strings * `<*> [^]` conflicted with similar states in other conditions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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), \