Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion install-timelord.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,11 @@ else
symlink_vdf_bench "$PYTHON_VERSION"
elif [ -e venv/bin/python ] && test "$MACOS"; then
echo "Installing chiavdf dependencies for MacOS."
if ! cmake --version >/dev/null 2>&1; then
brew install --formula --quiet cmake
fi
# The most recent boost version causes compile errors.
brew install --formula --quiet [email protected] cmake gmp
brew install --formula --quiet [email protected] gmp
# [email protected] is keg-only, which means it was not symlinked into /usr/local,
# because this is an alternate version of another formula.
export LDFLAGS="-L/usr/local/opt/[email protected]/lib"
Expand Down
Loading