We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4c5f34 + fc0e2ac commit 1c84abcCopy full SHA for 1c84abc
fixups/rustc_llvm/defs.bzl
@@ -1,6 +1,8 @@
1
def _llvm_config_impl(ctx: AnalysisContext) -> list[Provider]:
2
llvm = ctx.attrs.llvm[DefaultInfo].default_outputs[0]
3
- llvm_config = llvm.project("bin/llvm-config")
+ llvm_bin = llvm.project("bin")
4
+ llvm_lib = llvm.project("lib")
5
+ llvm_config = llvm_bin.project("llvm-config").with_associated_artifacts([llvm_lib])
6
return [
7
DefaultInfo(default_output = llvm_config),
8
RunInfo(llvm_config),
0 commit comments