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