diff options
author | Jay Phelps <hello@jayphelps.com> | 2017-01-27 10:52:51 -0800 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2017-01-27 10:52:51 -0800 |
commit | 85947db54125eecc6d6755103b9984828766bc4b (patch) | |
tree | ea311460485f4636988413854437769fa52340aa /README.md | |
parent | 3556e8f9fb1f4dff4bd506fa4c2b764ac4e6aea0 (diff) | |
download | wabt-85947db54125eecc6d6755103b9984828766bc4b.tar.gz wabt-85947db54125eecc6d6755103b9984828766bc4b.tar.bz2 wabt-85947db54125eecc6d6755103b9984828766bc4b.zip |
Update README now that wasm2wast defaults to including debug names as of #253 (#295)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -117,8 +117,8 @@ Some examples: # parse binary file test.wasm and write s-expression file test.wast $ out/wasm2wast test.wasm -o test.wast -# parse test.wasm and write test.wast, using the debug names, if any -$ out/wasm2wast test.wasm --debug-names -o test.wast +# parse test.wasm and write test.wast +$ out/wasm2wast test.wasm -o test.wast ``` You can use `-h` to get additional help: |