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

Remove booster build from kframework.rb formula #4

Merged
merged 1 commit into from
Apr 10, 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
6 changes: 1 addition & 5 deletions Formula/kframework.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,13 @@ def install
# https://github.com/Homebrew/homebrew-core/issues/122863
with_env(PATH: ENV["PATH"].sub("#{Formula["llvm"].bin}:", "")) do

# For both components, we need to run the stack phases _outside_ of
# We need to run the stack phases _outside_ of
# Maven to prevent connections from timing out.
cd "haskell-backend/src/main/native/haskell-backend" do
system "stack", "setup"
system "stack", "build"
end

cd "hs-backend-booster/src/main/native/hs-backend-booster" do
system "stack", "setup"
system "stack", "build"
end
end
end

Expand Down
Loading