Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin LLVM to 17 #5

Merged
merged 1 commit into from
Apr 26, 2024
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
4 changes: 2 additions & 2 deletions Formula/kframework.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Kframework < Formula
depends_on "gmp"
depends_on "jemalloc"
depends_on "libyaml"
depends_on "llvm"
depends_on "llvm@17"
depends_on "mpfr"
depends_on "openjdk"
depends_on "secp256k1"
Expand All @@ -37,7 +37,7 @@ def install
ENV.deparallelize do
# This is a hack to get LLVM off the PATH when building:
# https://github.com/Homebrew/homebrew-core/issues/122863
with_env(PATH: ENV["PATH"].sub("#{Formula["llvm"].bin}:", "")) do
with_env(PATH: ENV["PATH"].sub("#{Formula["llvm@17"].bin}:", "")) do

# We need to run the stack phases _outside_ of
# Maven to prevent connections from timing out.
Expand Down
Loading