why cargo build --target wasm32-wasi
throws and error about not having wasm32-wasi
while it is installed.
steps to reproduce
- cargo new train
- rustup target add wasm32-wasi
- cargo build --target wasm32-wasi
the output to the console is next
➜ train git:(master) ✗ cargo build --target wasm32-wasi
Compiling train v0.1.0 (/user/playground/rustLang/train)
error[E0463]: can't find crate for `std`
|
= note: the `wasm32-wasi` target may not be installed
= help: consider downloading the target with `rustup target add wasm32-wasi`
error: cannot find macro `println` in this scope
--> src/main.rs:2:5
|
2 | println!("hello");
| ^^^^^^^
error: requires `sized` lang_item
For more information about this error, try `rustc --explain E0463`.
error: could not compile `train` due to 3 previous errors
➜ train git:(master) ✗ rustup target add wasm32-wasi
info: component 'rust-std' for target 'wasm32-wasi' is up to date
➜ train git:(master) ✗
You already had the answer in the line:
help: consider downloading the target with
rustup target add wasm32-wasi
in the command prompt just type: > rustup target install wasm32-wasi