about summary refs log tree commit diff homepage
path: root/scripts/build/p-tcmalloc-linux-ubuntu.inc
blob: 1d5352de4cb618a3e8508100a204e6ff7df5c321 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
install_build_dependencies_tcmalloc() { 
  source "${DIR}/common-functions"
  with_sudo apt update -y

  dependencies=(
  build-essential
    ca-certificates
    cmake
    git
    wget
  )

  with_sudo apt -y --no-install-recommends install "${dependencies[@]}"
}