-
Notifications
You must be signed in to change notification settings - Fork 1
wasm32-wasi -> wasm32-wasip1 #22
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
Conversation
…32-wasip1. Added rustup target check to prepare.sh
|
|
||
| if ! (command_exists rustup); then | ||
| missing_deps=1 | ||
| echo "❌ rustup is missing. Check your rust installation." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: not a blocker, but we should come back and add some links here about how to install rustup.
template/prepare.sh
Outdated
| echo "❌ rustup is missing. Check your rust installation." | ||
| echo "" | ||
| elif ! (rustup target list --installed | grep -q '^wasm32-wasip1$'); then | ||
| if ! (rustup target add wasm32-wasip1); then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also not a blocker, but we should install the unknown target as well
bhelx
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Much appreciated!
No prob! |
changed the default target from deprecated wasm32-wasi target to wasm32-wasip1. Added rustup target check to prepare.sh