fix: remove cross compiling

fix/data-structure
paring 2022-11-05 13:42:52 +09:00
parent 4ec69cba48
commit 329887be58
Signed by: pikokr
GPG Key ID: DB839724AD14EC9F
1 changed files with 0 additions and 5 deletions

View File

@ -12,13 +12,8 @@ mkdir -p out/i686
if [[ $platform == 'Linux' ]]; then
cargo build --release --target x86_64-unknown-linux-gnu
cargo build --release --target x86_64-pc-windows-gnu
cargo build --release --target i686-pc-windows-gnu
cp target/x86_64-unknown-linux-gnu/release/libskyhook.so out/x86_64
cp target/x86_64-pc-windows-gnu/release/skyhook.dll out/x86_64
cp target/i686-pc-windows-gnu/release/skyhook.dll out/i686
elif [[ $platform == 'Darwin' ]]; then
cargo build --release --target x86_64-apple-darwin
cargo build --release --target aarch64-apple-darwin