diff options
author | Ben Smith <binjimin@gmail.com> | 2018-08-03 12:28:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 12:28:01 -0700 |
commit | 407ed441bcc2e316c02e407e81e7aed41000578f (patch) | |
tree | c28e421b34184be3901481d956404b9ba9d7abcb /test/help/wast2json.txt | |
parent | 7ce1b98bec018c13b5c8e3875688bed43f1f2935 (diff) | |
download | wabt-407ed441bcc2e316c02e407e81e7aed41000578f.tar.gz wabt-407ed441bcc2e316c02e407e81e7aed41000578f.tar.bz2 wabt-407ed441bcc2e316c02e407e81e7aed41000578f.zip |
Update testsuite; enable mut. globals by default (#884)
The newest testsuite update enables mutable globals by default, which
matches the v1 WebAssembly spec.
This change changes the default for all wabt tools, and changes the flag
to `--disable-mutable-globals` in case you need the previous behavior.
This flag will likely be removed in the future.
Diffstat (limited to 'test/help/wast2json.txt')
-rw-r--r-- | test/help/wast2json.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/help/wast2json.txt b/test/help/wast2json.txt index 5a1395ee..1d59046b 100644 --- a/test/help/wast2json.txt +++ b/test/help/wast2json.txt @@ -15,13 +15,13 @@ options: -v, --verbose Use multiple times for more info --help Print this help message --debug-parser Turn on debugging the parser of wast files - --enable-exceptions Experimental exception handling - --enable-mutable-globals Import/export mutable globals - --enable-saturating-float-to-int Saturating float-to-int operators - --enable-sign-extension Sign-extension operators - --enable-simd SIMD support - --enable-threads Threading support - --enable-multi-value Multi-value + --enable-exceptions Enable Experimental exception handling + --disable-mutable-globals Disable Import/export mutable globals + --enable-saturating-float-to-int Enable Saturating float-to-int operators + --enable-sign-extension Enable Sign-extension operators + --enable-simd Enable SIMD support + --enable-threads Enable Threading support + --enable-multi-value Enable Multi-value -o, --output=FILE output wasm binary file -r, --relocatable Create a relocatable wasm binary (suitable for linking with e.g. lld) --no-canonicalize-leb128s Write all LEB128 sizes as 5-bytes instead of their minimal size |