blob: 26bf2da959effdc76c88b4cc1293d92dc5674b57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
install_build_dependencies_tcmalloc() {
apt update -y
dependencies=(
build-essential
ca-certificates
cmake
git
wget
)
apt -y --no-install-recommends install "${dependencies[@]}"
}
|