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 95cf544 commit 07493ddCopy full SHA for 07493dd
src/bootstrap/dist.rs
@@ -1023,6 +1023,12 @@ impl Step for Rls {
1023
let rls = builder
1024
.ensure(tool::Rls { compiler, target, extra_features: Vec::new() })
1025
.or_else(|| {
1026
+ if builder.config.rustc_parallel {
1027
+ // FIXME: Disable RLS on parallel builds, cannot build due
1028
+ // to upstream trouble. See
1029
+ // https://github.com/racer-rust/racer/pull/1177.
1030
+ return None;
1031
+ }
1032
missing_tool("RLS", builder.build.config.missing_tools);
1033
None
1034
})?;
0 commit comments