This repository has been archived on 2023-05-28. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-11-03 19:22:12 +09:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2022-11-03 23:50:50 +09:00
|
|
|
platform=$(uname)
|
|
|
|
|
|
|
|
echo Current platform: $platform
|
|
|
|
|
2022-11-03 19:22:12 +09:00
|
|
|
mkdir -p out/x86_64
|
2022-11-03 23:50:50 +09:00
|
|
|
mkdir -p out/aarch64
|
2022-11-03 19:22:12 +09:00
|
|
|
mkdir -p out/i686
|
|
|
|
|
2022-11-03 23:50:50 +09:00
|
|
|
if [[ $platform == 'Linux' ]]; then
|
|
|
|
cargo build --release --target x86_64-unknown-linux-gnu
|
2022-11-03 19:22:12 +09:00
|
|
|
|
2022-11-03 23:50:50 +09:00
|
|
|
cp target/x86_64-unknown-linux-gnu/release/libskyhook.so out/x86_64
|
|
|
|
elif [[ $platform == 'Darwin' ]]; then
|
|
|
|
cargo build --release --target x86_64-apple-darwin
|
|
|
|
cargo build --release --target aarch64-apple-darwin
|
2022-11-03 19:22:12 +09:00
|
|
|
|
2022-11-03 23:50:50 +09:00
|
|
|
cp target/x86_64-apple-darwin/release/libskyhook.dylib out/x86_64
|
|
|
|
cp target/aarch64-apple-darwin/release/libskyhook.dylib out/aarch64
|
|
|
|
fi
|