summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2016-11-21 15:17:17 -0800
committerGitHub <noreply@github.com>2016-11-21 15:17:17 -0800
commit5a1add152460ef952dd94e2f5172fa440af6f3c6 (patch)
treeb470cbae75af0b37f244cfe54ab9b717af65d9e9 /README.md
parent03b08e00e2fbb7f19f97401b52ccfa952d68a7b2 (diff)
downloadwabt-5a1add152460ef952dd94e2f5172fa440af6f3c6.tar.gz
wabt-5a1add152460ef952dd94e2f5172fa440af6f3c6.tar.bz2
wabt-5a1add152460ef952dd94e2f5172fa440af6f3c6.zip
Update README.md (#223)
Add windows build status, and document wast-desugar tool.
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 959161f9..71167c0b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![Build Status](https://travis-ci.org/WebAssembly/wabt.svg?branch=master)](https://travis-ci.org/WebAssembly/wabt)
+[![Build Status](https://travis-ci.org/WebAssembly/wabt.svg?branch=master)](https://travis-ci.org/WebAssembly/wabt) [![Windows status](https://ci.appveyor.com/api/projects/status/79hqj5l0qggw645d/branch/master?svg=true)](https://ci.appveyor.com/project/WebAssembly/wabt/branch/master)
# WABT: The WebAssembly Binary Toolkit
@@ -7,6 +7,7 @@ WABT (we pronounce it "wabbit") is suite of tools for WebAssembly, including:
- **wast2wasm**: translate from [s-expressions](https://github.com/WebAssembly/spec) to the WebAssembly [binary-encoding](https://github.com/WebAssembly/design/blob/master/BinaryEncoding.md)
- **wasm2wast**: the inverse of wast2wasm, translate from the binary encoding back to an s-expression source file (also known as a .wast)
- **wasm-interp**: decode and run a WebAssembly binary file using a stack-based interpreter
+ - **wast-desugar**: parse .wast text form as supported by the spec interpreter (s-expressions, flat syntax, or mixed) and print "canonical" flat format
These tools are intended for use in (or for development of) toolchains or other
systems that want to manipulate WebAssembly files. Unlike the WebAssembly spec