use standard cargo build to compile

This commit is contained in:
Tanaka Zakku
2022-03-02 13:34:33 +09:00
parent bd4f433b73
commit 02628526ec
2 changed files with 2 additions and 2 deletions

View File

@@ -173,7 +173,7 @@ rustup update
```bash
rustup install stable-i686-pc-windows-msvc
rustup target add i686-pc-windows-msvc
rustup run stable-i686-pc-windows-msvc cargo build --release
cargo build --release --target=stable-i686-pc-windows-msvc
```
## macOSでのコンパイルの注意点

View File

@@ -174,7 +174,7 @@ You can create 32-bit binaries on 64-bit Windows systems with the following:
```bash
rustup install stable-i686-pc-windows-msvc
rustup target add i686-pc-windows-msvc
rustup run stable-i686-pc-windows-msvc cargo build --release
cargo build --release --target=stable-i686-pc-windows-msvc
```
## Notes on compiling on macOS