diff options
author | Andrew <andyerickson2014@gmail.com> | 2024-11-24 18:25:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 18:25:27 -0800 |
commit | 0583f0f664ccd481f4e8e5a29328b3b987881701 (patch) | |
tree | ca4743909d9e0c5b5ccb73396c5a1305c57f0fd9 | |
parent | b09caf643e08ec056769a39e91c65e0bafa90551 (diff) | |
download | wabt-0583f0f664ccd481f4e8e5a29328b3b987881701.tar.gz wabt-0583f0f664ccd481f4e8e5a29328b3b987881701.tar.bz2 wabt-0583f0f664ccd481f4e8e5a29328b3b987881701.zip |
README.md: Add notes on installing prebuilt packages (#2514)
Add `Installation` section to readme to help the next person ❤️
-rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -360,3 +360,19 @@ $ 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: +```sh +brew install wabt +``` + +And you use an apt-based linux distribution you can use: +```sh +sudo apt install wabt +``` + +You can also download prebuilt binaries for many platforms directly from the +github releases page. |