veilid/setup_macos.sh

47 lines
1.2 KiB
Bash
Raw Normal View History

2021-11-22 11:28:30 -05:00
#!/bin/bash
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
if [ ! "$(uname)" == "Darwin" ]; then
echo Not running on MacOS
exit 1
fi
2022-03-17 10:31:10 -04:00
# install targets
2021-11-22 11:28:30 -05:00
rustup target add aarch64-apple-darwin aarch64-apple-ios x86_64-apple-darwin x86_64-apple-ios
2022-03-17 10:31:10 -04:00
# install cargo packages
cargo install wasm-bindgen-cli
# install bitcode compatible ios toolchain
2021-11-22 12:39:19 -05:00
echo Manual Step:
2022-01-14 09:14:49 -05:00
echo install +ios-arm64-1.57.0 toolchain for bitcode from https://github.com/getditto/rust-bitcode/releases/latest and unzip
2021-11-22 12:39:19 -05:00
echo xattr -d -r com.apple.quarantine .
echo ./install.sh
2021-11-22 11:28:30 -05:00
2022-03-17 10:31:10 -04:00
# ensure brew is installed
2021-11-22 11:28:30 -05:00
if command -v brew &> /dev/null; then
echo '[X] brew is available in the path'
else
echo 'brew is not available in the path'
exit 1
fi
2022-03-17 10:31:10 -04:00
# ensure xcode is installed
2021-11-22 11:28:30 -05:00
if command -v xcode-select &> /dev/null; then
echo '[X] XCode is available in the path'
else
echo 'XCode is not available in the path'
exit 1
fi
2022-03-17 10:31:10 -04:00
# ensure we have command line tools
2021-11-22 11:28:30 -05:00
xcode-select --install
2022-03-17 10:31:10 -04:00
# ensure packages are installed
if [ "$BREW_USER" == "" ]; then
BREW_USER=`ls -lad /opt/homebrew/. | cut -d\ -f4`
echo "Must sudo to homebrew user \"$BREW_USER\" to install capnp package:"
fi
sudo -H -u $BREW_USER brew install capnp
2021-11-22 11:28:30 -05:00