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.
1 parent 1c84abc commit b4c81edCopy full SHA for b4c81ed
fixups/rustc_llvm/defs.bzl
@@ -17,12 +17,9 @@ def _rustc_cfg_llvm_component_impl(
17
actions: AnalysisActions,
18
llvm_config_components: ArtifactValue,
19
output: OutputArtifact) -> list[Provider]:
20
- discard = set(["csky"]) # broken?
21
-
22
cfg = []
23
for component in llvm_config_components.read_string().split():
24
- if component not in discard:
25
- cfg.append("--cfg=llvm_component=\"{}\"\n".format(component))
+ cfg.append("--cfg=llvm_component=\"{}\"\n".format(component))
26
27
actions.write(output, "".join(cfg))
28
return []
0 commit comments