diff options
author | Ben Smith <binjimin@gmail.com> | 2017-06-19 09:59:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-19 09:59:51 -0700 |
commit | 5c9ed7ef98dda446e01a07c285051fd0e98d43c7 (patch) | |
tree | ec2656a372643493370501ced52868d00fcd8c31 /Makefile | |
parent | 0f700c65f819e593a814c6b71585cf7c7f5415bc (diff) | |
download | wabt-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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), \ |