diff options
author | Ben Smith <binji@chromium.org> | 2020-08-10 14:41:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 14:41:04 -0700 |
commit | b199ff27800f275d8a143d45b6c820972d9625bf (patch) | |
tree | b59e93ba367f71d6e15a296e1471d3a529ba257f /README.md | |
parent | 204ef4ed0b618138a22c55ddeba0477e374e9883 (diff) | |
download | wabt-b199ff27800f275d8a143d45b6c820972d9625bf.tar.gz wabt-b199ff27800f275d8a143d45b6c820972d9625bf.tar.bz2 wabt-b199ff27800f275d8a143d45b6c820972d9625bf.zip |
Update README.md to include default-on proposals (#1515)
Some proposals are enabled by default now, so the README should reflect that. Also, the flag was flipped to disable (rather than enable), so change that here too.
See issue #1513.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 31 |
1 files changed, 16 insertions, 15 deletions
@@ -37,26 +37,27 @@ Wabt has been compiled to JavaScript via emscripten. Some of the functionality i ## Supported Proposals * Proposal: Name and link to the WebAssembly proposal repo -* flag: Flag to pass to the tool to enable support for the feature +* flag: Flag to pass to the tool to enable/disable support for the feature +* default: Whether the feature is enabled by default * binary: Whether wabt can read/write the binary format * text: Whether wabt can read/write the text format * validate: Whether wabt can validate the syntax * interpret: Whether wabt can execute these operations in `wasm-interp` or `spectest-interp` -| Proposal | flag | binary | text | validate | interpret | -| - | - | - | - | - | - | -| [exception handling][] | `--enable-exceptions` | ✓ | ✓ | ✓ | ✓ | -| [mutable globals][] | `--disable-mutable-globals` | ✓ | ✓ | ✓ | ✓ | -| [nontrapping float-to-int conversions][] | `--enable-saturating-float-to-int` | ✓ | ✓ | ✓ | ✓ | -| [sign extension][] | `--enable-sign-extension` | ✓ | ✓ | ✓ | ✓ | -| [simd][] | `--enable-simd` | ✓ | ✓ | ✓ | ✓ | -| [threads][] | `--enable-threads` | ✓ | ✓ | ✓ | ✓ | -| [multi-value][] | `--enable-multi-value` | ✓ | ✓ | ✓ | ✓ | -| [tail-call][] | `--enable-tail-call` | ✓ | ✓ | ✓ | ✓ | -| [bulk memory][] | `--enable-bulk-memory` | ✓ | ✓ | ✓ | ✓ | -| [reference types][] | `--enable-reference-types` | ✓ | ✓ | ✓ | ✓ | -| [annotations][] | `--enable-annotations` | | ✓ | | | -| [memory64][] | `--enable-memory64` | | | | | +| Proposal | flag | default | binary | text | validate | interpret | +| - | - | - | - | - | - | - | +| [exception handling][] | `--enable-exceptions` | | ✓ | ✓ | ✓ | ✓ | +| [mutable globals][] | `--disable-mutable-globals` | ✓ | ✓ | ✓ | ✓ | ✓ | +| [nontrapping float-to-int conversions][] | `--disable-saturating-float-to-int` | ✓ | ✓ | ✓ | ✓ | ✓ | +| [sign extension][] | `--disable-sign-extension` | ✓ | ✓ | ✓ | ✓ | ✓ | +| [simd][] | `--enable-simd` | | ✓ | ✓ | ✓ | ✓ | +| [threads][] | `--enable-threads` | | ✓ | ✓ | ✓ | ✓ | +| [multi-value][] | `--disable-multi-value` | ✓ | ✓ | ✓ | ✓ | ✓ | +| [tail-call][] | `--enable-tail-call` | | ✓ | ✓ | ✓ | ✓ | +| [bulk memory][] | `--enable-bulk-memory` | | ✓ | ✓ | ✓ | ✓ | +| [reference types][] | `--enable-reference-types` | | ✓ | ✓ | ✓ | ✓ | +| [annotations][] | `--enable-annotations` | | | ✓ | | | +| [memory64][] | `--enable-memory64` | | | | | | [exception handling]: https://github.com/WebAssembly/exception-handling [mutable globals]: https://github.com/WebAssembly/mutable-global |