mirror of
https://gitea.farpn.net/w1cdn/mwtchahrd.git
synced 2025-12-10 06:28:02 -06:00
8 lines
295 B
Bash
Executable File
8 lines
295 B
Bash
Executable File
echo "Building dev for multiple targets";
|
|
cargo build;
|
|
cross build --target=aarch64-unknown-linux-gnu;
|
|
cross build --target=x86_64-unknown-linux-gnu;
|
|
cross build --target=armv7-unknown-linux-gnueabihf;
|
|
cross build --target=arm-unknown-linux-gnueabihf;
|
|
cross build --target x86_64-pc-windows-gnu
|