-
Notifications
You must be signed in to change notification settings - Fork 18
/
install_deb.sh
executable file
·87 lines (75 loc) · 3.21 KB
/
install_deb.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/bash
# Installs dependencies, builds aWsm, and places it into your path
# Be sure to validate the Rust and LLVM install scripts we invoke below!
# CI runs this script as root
sudo="sudo"
if [[ $(whoami) == "root" ]]; then
sudo=""
fi
# Exit if not executing script from project root because we use relative paths
# We want to match without case because the URL of the git repo is case insensitive, but the resulting
# directory is case sensitive. Thus, we can end up with either "aWsm" or "awsm."
shopt -s nocasematch
if [[ $(git remote get-url origin) != *"/awsm"* || $(git rev-parse --show-toplevel) != $(pwd) ]]; then
echo "Install script must be run from project root."
exit 1
fi
shopt -u nocasematch
# Install Build Dependencies
$sudo apt install build-essential --yes
$sudo apt install cmake --yes
$sudo apt install lsb-release wget software-properties-common --yes
$sudo apt install wabt --yes
# Install LLVM build dependencies
# Note, wasi-sdk versions do NOT match llvm versions, e.g. wasi-sdk-12 actually uses llvm-11
LLVM_VERSION=13
WASI_SDK_VERSION=12
$sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" bash $LLVM_VERSION
$sudo apt install libc++-$LLVM_VERSION-dev libc++abi-$LLVM_VERSION-dev --yes
$sudo apt install "clang-format-$LLVM_VERSION" --yes
$sudo update-alternatives --remove-all llvm-dis
$sudo update-alternatives --remove-all llvm-config
$sudo update-alternatives --remove-all clang
$sudo update-alternatives --remove-all clang++
$sudo update-alternatives --remove-all clang-format
$sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-$LLVM_VERSION 100
$sudo update-alternatives --install /usr/bin/llvm-dis llvm-dis /usr/bin/llvm-dis-$LLVM_VERSION 100
$sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-$LLVM_VERSION 100
$sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-$LLVM_VERSION 100
$sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-$LLVM_VERSION 100
# Install Binaryen
# Clang uses Binaryen's wasm-opt utility to optimize WebAssembly
$sudo apt install binaryen --yes
# Install Rust
if [[ -x "$(command -v rustup)" ]]; then
rustup install 1.56.0
rustup default 1.56.0
rustup update
else
curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain 1.56.0
fi
source "$HOME/.cargo/env"
export PATH="$HOME/.cargo/bin:$PATH"
# Build and install aWsm
cargo build --release
$sudo cp -t /usr/bin ./target/release/awsm
# Install Wasmception
if [[ ! -d "./wasmception" ]] || [[ -z "$(ls -A wasmception)" ]]; then
git submodule update --init --recursive
fi
cd wasmception || exit
make
cd .. || exit
# Install WASI-SDK if WASI_SDK_PATH not already set
if [[ -n "${WASI_SDK_PATH}" ]] && [[ -x "${WASI_SDK_PATH}/bin/clang" ]]; then
echo "wasi-sdk detected"
else
wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-$WASI_SDK_VERSION/wasi-sdk_$WASI_SDK_VERSION.0_amd64.deb
# The Debian package installs WASI-SDK to /opt/wasi-sdk
$sudo dpkg -i wasi-sdk_$WASI_SDK_VERSION.0_amd64.deb
rm -f wasi-sdk_$WASI_SDK_VERSION.0_amd64.deb
echo 'export WASI_SDK_PATH="/opt/wasi-sdk/"' >> ~/.bashrc
source ~/.bashrc
fi
# Install libuv and uvwasi
make -C ./runtime/thirdparty install