mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
Merge branch 'macos_setup' into 'main'
ANDROID_SDK being optional in setup_macos.sh See merge request veilid/veilid!164
This commit is contained in:
commit
0f54f2555d
@ -7,6 +7,9 @@ if [ ! "$(uname)" == "Darwin" ]; then
|
|||||||
echo Not running on MacOS
|
echo Not running on MacOS
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
read -p "Did you install Android SDK? Y/N " response
|
||||||
|
case $response in
|
||||||
|
[yY] ) echo Checking android setup...;
|
||||||
|
|
||||||
# ensure ANDROID_SDK_ROOT is defined and exists
|
# ensure ANDROID_SDK_ROOT is defined and exists
|
||||||
if [ -d "$ANDROID_SDK_ROOT" ]; then
|
if [ -d "$ANDROID_SDK_ROOT" ]; then
|
||||||
@ -63,6 +66,7 @@ else
|
|||||||
echo 'adb is not available in the path'
|
echo 'adb is not available in the path'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
esac
|
||||||
|
|
||||||
# ensure brew is installed
|
# ensure brew is installed
|
||||||
if command -v brew &> /dev/null; then
|
if command -v brew &> /dev/null; then
|
||||||
@ -125,8 +129,11 @@ if [ "$BREW_USER" == "" ]; then
|
|||||||
fi
|
fi
|
||||||
sudo -H -u $BREW_USER brew install capnp cmake wabt llvm protobuf openjdk@17 jq
|
sudo -H -u $BREW_USER brew install capnp cmake wabt llvm protobuf openjdk@17 jq
|
||||||
|
|
||||||
|
case $response in
|
||||||
|
[yY] ) echo Checking android sdk packages are installed...;
|
||||||
# Ensure android sdk packages are installed
|
# Ensure android sdk packages are installed
|
||||||
$ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager build-tools\;33.0.1 ndk\;25.1.8937393 cmake\;3.22.1 platform-tools platforms\;android-33
|
$ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager build-tools\;33.0.1 ndk\;25.1.8937393 cmake\;3.22.1 platform-tools platforms\;android-33
|
||||||
|
esac
|
||||||
|
|
||||||
# install targets
|
# install targets
|
||||||
rustup target add aarch64-apple-darwin aarch64-apple-ios aarch64-apple-ios-sim x86_64-apple-darwin x86_64-apple-ios wasm32-unknown-unknown aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android
|
rustup target add aarch64-apple-darwin aarch64-apple-ios aarch64-apple-ios-sim x86_64-apple-darwin x86_64-apple-ios wasm32-unknown-unknown aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android
|
||||||
|
Loading…
Reference in New Issue
Block a user