Skip to content

Commit

Permalink
Rollup merge of rust-lang#112339 - lnicola:proc-macro-srv-feature, r=…
Browse files Browse the repository at this point in the history
…Veykril

Fix rust-analyzer proc macro server

The feature now exists on `proc-macro-srv-cli`, and without it the proc macro server will bail rigth out.

CC rust-lang/rust-analyzer#14991
  • Loading branch information
matthiaskrgr authored Jun 8, 2023
2 parents 4f2e1df + a3cc503 commit c71daaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ impl Step for RustAnalyzerProcMacroSrv {
tool: "rust-analyzer-proc-macro-srv",
mode: Mode::ToolStd,
path: "src/tools/rust-analyzer/crates/proc-macro-srv-cli",
extra_features: vec!["proc-macro-srv/sysroot-abi".to_owned()],
extra_features: vec!["sysroot-abi".to_owned()],
is_optional_tool: false,
source_type: SourceType::InTree,
allow_features: RustAnalyzer::ALLOW_FEATURES,
Expand Down

0 comments on commit c71daaa

Please sign in to comment.