summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2020-08-10 14:41:04 -0700
committerGitHub <noreply@github.com>2020-08-10 14:41:04 -0700
commitb199ff27800f275d8a143d45b6c820972d9625bf (patch)
treeb59e93ba367f71d6e15a296e1471d3a529ba257f /README.md
parent204ef4ed0b618138a22c55ddeba0477e374e9883 (diff)
downloadwabt-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.md31
1 files changed, 16 insertions, 15 deletions
diff --git a/README.md b/README.md
index 9f05dcbe..7e317a88 100644
--- a/README.md
+++ b/README.md
@@ -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