We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6142bf6 commit 7477867Copy full SHA for 7477867
src/bootstrap/dist.rs
@@ -1336,7 +1336,13 @@ impl Step for Rls {
1336
let rls = builder
1337
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
1338
.or_else(|| {
1339
- missing_tool("RLS", builder.build.config.missing_tools);
+ // We ignore failure on aarch64 Windows because RLS currently
1340
+ // fails to build, due to winapi 0.2 not supporting aarch64.
1341
+ missing_tool(
1342
+ "RLS",
1343
+ builder.build.config.missing_tools
1344
+ || (target.triple.contains("aarch64") && target.triple.contains("windows")),
1345
+ );
1346
None
1347
})?;
1348
0 commit comments