Skip to content
This repository was archived by the owner on Nov 11, 2019. It is now read-only.
Merged
Changes from all 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
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ Here's a quick guide to the repositories where things live:

[wasi-sdk](https://github.com/CraneStation/wasi-sdk) - “WASI SDK” packages for C/C++. If you want to try out compiling C/C++, this is a good place to start. "It's just clang."

WASI-enabled Rust - Rust Nightly builds now have built-in WASI support. To get started using Rust for targeting WASI:
WASI-enabled Rust - Rust 1.35 now has built-in WASI support. To get started using Rust for targeting WASI:

```
rustup target add wasm32-wasi --toolchain nightly
cargo +nightly build --target wasm32-wasi
rustup target add wasm32-unknown-wasi
cargo build --target wasm32-unknown-wasi
```

(Note: For Rust 1.36 and later, use `wasm32-wasi` instead of `wasm32-unknown-wasi`.)

[wasi-libc](https://github.com/CraneStation/wasi-libc/) - WASI libc sources.

[wasmtime](https://github.com/CraneStation/wasmtime/) - Wasmtime WebAssembly runtime, with WASI support, as well as the WASI documentation.
Expand Down