summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-04-28 21:26:51 -0700
committerBen Smith <binji@chromium.org>2016-04-28 21:58:25 -0700
commit98729df534b55d495d0040266daaaf96ed41b9f9 (patch)
tree5c94244240665db55ad7442fe8cf162cfcd08fce /README.md
parent8ef2f014f80ad118c901db4c65d4feb0baf878da (diff)
downloadwabt-98729df534b55d495d0040266daaaf96ed41b9f9.tar.gz
wabt-98729df534b55d495d0040266daaaf96ed41b9f9.tar.bz2
wabt-98729df534b55d495d0040266daaaf96ed41b9f9.zip
rename Lexer -> AstLexer, Parser -> AstParser
This matches other files, and will be nicer if other lexers/parsers are added. Also remove some references to flex, and the flex lexer.
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index c3c59b8f..b45fc16d 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ configuration.
- compilers: `gcc`, `clang`, `gcc-i686`, `gcc-fuzz`
- build types: `debug`, `release`
- - configurations: empty, `asan`, `msan`, `lsan`, `no-flex-bison`, `no-tests`
+ - configurations: empty, `asan`, `msan`, `lsan`, `no-re2c-bison`, `no-tests`
They are combined with dashes, for example:
@@ -47,7 +47,7 @@ They are combined with dashes, for example:
$ make clang-debug
$ make gcc-i686-release
$ make clang-debug-lsan
-$ make gcc-debug-no-flex-bison
+$ make gcc-debug-no-re2c-bison
```
You can also run CMake yourself, the normal way:
@@ -59,15 +59,15 @@ $ cmake ..
...
```
-If you make changes to `src/wasm-bison-parser.y`, you'll need to install Bison.
+If you make changes to `src/wasm-ast-parser.y`, you'll need to install Bison.
Before you upload your PR, please run `make update-bison` to update the
prebuilt C sources in `src/prebuilt/`.
-If you make changes to `src/wasm-flex-lexer.l`, you'll need to install Flex.
-Before you upload your PR, please run `make update-flex` to update the prebuilt
-C sources in `src/prebuilt/`.
+If you make changes to `src/wasm-ast-lexer.c`, you'll need to install
+[re2c](http://re2c.org). Before you upload your PR, please run `make
+update-re2c` to update the prebuilt C sources in `src/prebuilt/`.
-CMake will detect if you don't have Flex or Bison installed and use the
+CMake will detect if you don't have re2c or Bison installed and use the
prebuilt source files instead.
## Building d8