From 329887be5857c1d7c886628c649bd4bdb99d1a12 Mon Sep 17 00:00:00 2001 From: Pariring Date: Sat, 5 Nov 2022 13:42:52 +0900 Subject: [PATCH] fix: remove cross compiling --- build.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.sh b/build.sh index 696c4cb..47f52d1 100755 --- a/build.sh +++ b/build.sh @@ -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