We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a353cb0 + b9df85f commit efd2739Copy full SHA for efd2739
src/bootstrap/test.rs
@@ -379,7 +379,9 @@ impl Step for RustAnalyzer {
379
let host = self.host;
380
let compiler = builder.compiler(stage, host);
381
382
- builder.ensure(tool::RustAnalyzer { compiler, target: self.host }).expect("in-tree tool");
+ // We don't need to build the whole Rust Analyzer for the proc-macro-srv test suite,
383
+ // but we do need the standard library to be present.
384
+ builder.ensure(compile::Std::new(compiler, host));
385
386
let workspace_path = "src/tools/rust-analyzer";
387
// until the whole RA test suite runs on `i686`, we only run
0 commit comments