Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add installation section to README.md #2514

Merged
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,3 +360,16 @@ $ out/clang/Debug/fuzz/wasm2wat_fuzz ...

See the [libFuzzer documentation](https://llvm.org/docs/LibFuzzer.html) for
more information about how to use this tool.

## Installing prebuilt binaries

Wabt is available on many platforms as prepackaged binaries. For example if you use Homebrew you can use:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a comma after "For example" , and wrap this line at 80 columns (same with the very last line)

```sh
brew install wabt
```

And you use an apt-based linux distribution you can use:
```sh
sudo apt install wabt
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe an empty line here?

You can also download prebuilt binaries for many platforms directly from the github releases page.
Loading