mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-10 18:11:04 +09:00
29 lines
699 B
Bash
29 lines
699 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ "$1" = "Linux" ]; then
|
|
sudo apt update
|
|
if [ "$?" != "0" ]; then
|
|
exit 1;
|
|
fi
|
|
sudo apt install cmake llvm-3.9 clang-3.9 lldb-3.9 liblldb-3.9-dev libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev libcurl4-openssl-dev libssl-dev libkrb5-dev libnuma-dev
|
|
if [ "$?" != "0" ]; then
|
|
exit 1;
|
|
fi
|
|
elif [ "$1" = "OSX" ]; then
|
|
brew update
|
|
if [ "$?" != "0" ]; then
|
|
exit 1;
|
|
fi
|
|
brew install icu4c openssl
|
|
if [ "$?" != "0" ]; then
|
|
exit 1;
|
|
fi
|
|
brew link --force icu4c
|
|
if [ "$?" != "0" ]; then
|
|
exit 1;
|
|
fi
|
|
else
|
|
echo "Must pass \"Linux\" or \"OSX\" as first argument."
|
|
exit 1
|
|
fi
|
|
|