You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 11, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -12,15 +12,13 @@ Here's a quick guide to the repositories where things live:
12
12
13
13
[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."
14
14
15
-
WASI-enabled Rust - Rust 1.35 now has built-in WASI support. To get started using Rust for targeting WASI:
15
+
WASI-enabled Rust - Rust 1.36 (currently in beta) has built-in WASI support. To get started using Rust for targeting WASI:
16
16
17
17
```
18
-
rustup target add wasm32-unknown-wasi
19
-
cargo build --target wasm32-unknown-wasi
18
+
rustup target add wasm32-wasi --toolchain beta
19
+
cargo +beta build --target wasm32-wasi
20
20
```
21
21
22
-
(Note: For Rust 1.36 and later, use `wasm32-wasi` instead of `wasm32-unknown-wasi`.)
0 commit comments