如何解决未找到 cargo wasm 错误?

huangapple go评论51阅读模式
英文:

How can I resolve not found cargo wasm error?

问题

当使用RUSTFLAGS='-C link-arg=-s' cargo wasm构建合同时,它显示以下错误。

如何解决未找到 cargo wasm 错误?

在使用cargo install安装了wasm-pack之后,仍然显示此错误。我该如何修复它?

英文:

when build contract with RUSTFLAGS='-C link-arg=-s' cargo wasm, it shows bellow error.

如何解决未找到 cargo wasm 错误?

After installed wasm-pack with cargo install, it still shows this error. How can I fix it?

答案1

得分: 1

尝试安装 cargo-wasm:

 $ cargo install cargo-wasm

然后

$ cargo --list

以查看是否已正确安装

然后设置您的项目

$ cargo setup

干杯!

英文:

Try to install cargo-wasm:

 $ cargo install cargo-wasm

then

$ cargo --list

to see if was correctly installed

then setup your project

$ cargo setup

Cheers!

huangapple
  • 本文由 发表于 2023年3月7日 01:28:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/75653979.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定