blob: 38eaa02c0d0804ef9c78607fa65efddd7bb86946 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# Build dependencies
install_build_dependencies_klee() {
brew upgrade python # upgrade to Python 3
brew link --overwrite python
if [[ $(to_bool "${ENABLE_DOXYGEN}") -eq 1 ]]; then
brew install doxygen graphviz
fi
pip3 install lit tabulate
}
|