Skip to content

build-script: fix --skip-build-llvm not having full effect #82233

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def compute_product_pipelines(self):
# Swift still needs a few LLVM targets like tblgen to be built for it to be
# configured. Instead, handle this in the product for now.
builder.add_product(products.LLVM,
is_enabled=True)
is_enabled=self.args.build_llvm or self.args.build_swift)

builder.add_product(products.StaticSwiftLinuxConfig,
is_enabled=self.args.install_static_linux_config)
Expand Down