英文:
How can I resolve not found cargo wasm error?
问题
当使用RUSTFLAGS='-C link-arg=-s' cargo wasm
构建合同时,它显示以下错误。
在使用cargo install
安装了wasm-pack
之后,仍然显示此错误。我该如何修复它?
英文:
when build contract with RUSTFLAGS='-C link-arg=-s' cargo wasm, it shows bellow error.
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!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论