We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f4e7c1 + 1179866 commit 453dc54Copy full SHA for 453dc54
src/bootstrap/tool.rs
@@ -747,19 +747,9 @@ impl Step for RustAnalyzerProcMacroSrv {
747
const ONLY_HOSTS: bool = true;
748
749
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
750
- let builder = run.builder;
751
-
752
// Allow building `rust-analyzer-proc-macro-srv` both as part of the `rust-analyzer` and as a stand-alone tool.
753
run.path("src/tools/rust-analyzer")
754
.path("src/tools/rust-analyzer/crates/proc-macro-srv-cli")
755
- .default_condition(
756
- builder.config.extended
757
- && builder.config.tools.as_ref().map_or(true, |tools| {
758
- tools.iter().any(|tool| {
759
- tool == "rust-analyzer" || tool == "rust-analyzer-proc-macro-srv"
760
- })
761
- }),
762
- )
763
}
764
765
fn make_run(run: RunConfig<'_>) {
0 commit comments