about summary refs log tree commit diff homepage
path: root/scripts/build/p-libcxx-linux-ubuntu.inc
blob: 8fefd83eeabdb2a52a40a3a9388585d7cab3aa30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
install_build_dependencies_libcxx() { 
  apt-get update -y

  dependencies=(
    build-essential
    ca-certificates
    git
    python3
    python3-pip
    cmake
    curl
    file # Needed for wllvm
  )

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

  pip3 install wllvm
}