Skip to content

Commit 6360c9c

Browse files
authored
Unrolled build for rust-lang#119124
Rollup merge of rust-lang#119124 - onur-ozkan:help-118861, r=Mark-Simulacrum don't build `rust-analyzer-proc-macro-srv` on def config Should be very easy to understand when reviewing commit-by-commit. Blocker for rust-lang#118861
2 parents 767453e + 1f141dc commit 6360c9c

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

config.example.toml

+1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@
323323
# "rustdoc",
324324
# "rustfmt",
325325
# "rust-analyzer",
326+
# "rust-analyzer-proc-macro-srv",
326327
# "analysis",
327328
# "src",
328329
# "rust-demangler", # if profiler = true

src/bootstrap/src/core/build_steps/tool.rs

+8-5
Original file line numberDiff line numberDiff line change
@@ -671,11 +671,14 @@ impl Step for RustAnalyzerProcMacroSrv {
671671
// Allow building `rust-analyzer-proc-macro-srv` both as part of the `rust-analyzer` and as a stand-alone tool.
672672
run.path("src/tools/rust-analyzer")
673673
.path("src/tools/rust-analyzer/crates/proc-macro-srv-cli")
674-
.default_condition(builder.config.tools.as_ref().map_or(true, |tools| {
675-
tools
676-
.iter()
677-
.any(|tool| tool == "rust-analyzer" || tool == "rust-analyzer-proc-macro-srv")
678-
}))
674+
.default_condition(
675+
builder.config.extended
676+
&& builder.config.tools.as_ref().map_or(true, |tools| {
677+
tools.iter().any(|tool| {
678+
tool == "rust-analyzer" || tool == "rust-analyzer-proc-macro-srv"
679+
})
680+
}),
681+
)
679682
}
680683

681684
fn make_run(run: RunConfig<'_>) {

src/bootstrap/src/core/builder.rs

+14
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,18 @@ impl PathSet {
289289
}
290290
}
291291

292+
const PATH_REMAP: &[(&str, &str)] = &[("rust-analyzer-proc-macro-srv", "proc-macro-srv-cli")];
293+
294+
fn remap_paths(paths: &mut Vec<&Path>) {
295+
for path in paths.iter_mut() {
296+
for &(search, replace) in PATH_REMAP {
297+
if path.to_str() == Some(search) {
298+
*path = Path::new(replace)
299+
}
300+
}
301+
}
302+
}
303+
292304
impl StepDescription {
293305
fn from<S: Step>(kind: Kind) -> StepDescription {
294306
StepDescription {
@@ -361,6 +373,8 @@ impl StepDescription {
361373
let mut paths: Vec<_> =
362374
paths.into_iter().map(|p| p.strip_prefix(".").unwrap_or(p)).collect();
363375

376+
remap_paths(&mut paths);
377+
364378
// Handle all test suite paths.
365379
// (This is separate from the loop below to avoid having to handle multiple paths in `is_suite_path` somehow.)
366380
paths.retain(|path| {

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
9696
severity: ChangeSeverity::Info,
9797
summary: "Removed rust.run_dsymutil and dist.gpg_password_file config options, as they were unused.",
9898
},
99+
ChangeInfo {
100+
change_id: 119124,
101+
severity: ChangeSeverity::Warning,
102+
summary: "rust-analyzer-proc-macro-srv is no longer enabled by default. To build it, you must either enable it in the configuration or explicitly invoke it with x.py.",
103+
},
99104
];

0 commit comments

Comments
 (0)