about summary refs log tree commit diff homepage
path: root/scripts/build/p-libcxx-osx.inc
blob: d112fff2ddec2a041f15e481c4c6d1ae9002b931 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Build dependencies
install_build_dependencies_libcxx() {
  set +e
  brew upgrade python               # upgrade to Python 3
  set -e
  pip3 install --user wllvm
  base_path="$(python3 -m site --user-base)"
  export PATH="$PATH:${base_path}/bin"
}