We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77d13f5 commit 9157430Copy full SHA for 9157430
src/bootstrap/dist.rs
@@ -1029,7 +1029,13 @@ impl Step for Rls {
1029
let rls = builder
1030
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
1031
.or_else(|| {
1032
- missing_tool("RLS", builder.build.config.missing_tools);
+ // We ignore failure on aarch64 Windows because RLS currently
1033
+ // fails to build, due to winapi 0.2 not supporting aarch64.
1034
+ missing_tool(
1035
+ "RLS",
1036
+ builder.build.config.missing_tools
1037
+ || (target.triple.contains("aarch64") && target.triple.contains("windows")),
1038
+ );
1039
None
1040
})?;
1041
0 commit comments