Skip to content

Commit b4c81ed

Browse files
committed
Re-enable llvm_component="csky"
1 parent 1c84abc commit b4c81ed

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

fixups/rustc_llvm/defs.bzl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,9 @@ def _rustc_cfg_llvm_component_impl(
1717
actions: AnalysisActions,
1818
llvm_config_components: ArtifactValue,
1919
output: OutputArtifact) -> list[Provider]:
20-
discard = set(["csky"]) # broken?
21-
2220
cfg = []
2321
for component in llvm_config_components.read_string().split():
24-
if component not in discard:
25-
cfg.append("--cfg=llvm_component=\"{}\"\n".format(component))
22+
cfg.append("--cfg=llvm_component=\"{}\"\n".format(component))
2623

2724
actions.write(output, "".join(cfg))
2825
return []

0 commit comments

Comments
 (0)