Ignore failures of RLS on aarch64 Windows
This commit is contained in:
parent
6142bf6bd9
commit
7477867b01
@ -1336,7 +1336,13 @@ impl Step for Rls {
|
|||||||
let rls = builder
|
let rls = builder
|
||||||
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
|
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
|
||||||
.or_else(|| {
|
.or_else(|| {
|
||||||
missing_tool("RLS", builder.build.config.missing_tools);
|
// We ignore failure on aarch64 Windows because RLS currently
|
||||||
|
// fails to build, due to winapi 0.2 not supporting aarch64.
|
||||||
|
missing_tool(
|
||||||
|
"RLS",
|
||||||
|
builder.build.config.missing_tools
|
||||||
|
|| (target.triple.contains("aarch64") && target.triple.contains("windows")),
|
||||||
|
);
|
||||||
None
|
None
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user