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 680c6ce commit c4aeccdCopy full SHA for c4aeccd
src/bootstrap/dist.rs
@@ -1033,7 +1033,13 @@ impl Step for Rls {
1033
let rls = builder
1034
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
1035
.or_else(|| {
1036
- missing_tool("RLS", builder.build.config.missing_tools);
+ // We ignore failure on aarch64 Windows because RLS currently
1037
+ // fails to build, due to winapi 0.2 not supporting aarch64.
1038
+ missing_tool(
1039
+ "RLS",
1040
+ builder.build.config.missing_tools
1041
+ || (target.triple.contains("aarch64") && target.triple.contains("windows")),
1042
+ );
1043
None
1044
})?;
1045
0 commit comments