newechoes/wasm/readme.md

24 lines
317 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 构建命令
## 构建wasm
```bash
wasm-pack build --target web
```
## 构建应用
### windows
```bash
cargo build --release --target x86_64-pc-windows-msvc
```
> 如果在window上交叉编译先安装Linux工具链crosswsldocker
### linux
```bash
rustup target add x86_64-unknown-linux-musl
```