Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e204a32

Browse files
committedMay 30, 2024
use BootstrapCommand for tool::ToolBuild step
Previously, we were running bare commands for `ToolBuild` step and were unable to utilize many of the flags that are already handled by `compile::cargo_run`. This change improves `ToolBuild` to use `compile::cargo_run`, allowing us to fully benefit from all the flags supported by the bootstrap cargo. Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent e9768a3 commit e204a32

File tree

6 files changed

+51
-22
lines changed

6 files changed

+51
-22
lines changed
 

‎src/bootstrap/src/core/build_steps/check.rs

+11-6
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ impl Step for Std {
8888
vec![],
8989
true,
9090
false,
91-
);
91+
)
92+
.unwrap();
9293

9394
// We skip populating the sysroot in non-zero stage because that'll lead
9495
// to rlib/rmeta conflicts if std gets built during this session.
@@ -145,7 +146,8 @@ impl Step for Std {
145146
vec![],
146147
true,
147148
false,
148-
);
149+
)
150+
.unwrap();
149151
}
150152
}
151153

@@ -242,7 +244,8 @@ impl Step for Rustc {
242244
vec![],
243245
true,
244246
false,
245-
);
247+
)
248+
.unwrap();
246249

247250
let libdir = builder.sysroot_libdir(compiler, target);
248251
let hostdir = builder.sysroot_libdir(compiler, compiler.host);
@@ -308,7 +311,8 @@ impl Step for CodegenBackend {
308311
vec![],
309312
true,
310313
false,
311-
);
314+
)
315+
.unwrap();
312316
}
313317
}
314318

@@ -374,7 +378,8 @@ impl Step for RustAnalyzer {
374378
vec![],
375379
true,
376380
false,
377-
);
381+
)
382+
.unwrap();
378383

379384
/// Cargo's output path in a given stage, compiled by a particular
380385
/// compiler for the specified target.
@@ -437,7 +442,7 @@ macro_rules! tool_check_step {
437442
vec![],
438443
true,
439444
false,
440-
);
445+
).unwrap();
441446

442447
/// Cargo's output path in a given stage, compiled by a particular
443448
/// compiler for the specified target.

‎src/bootstrap/src/core/build_steps/clippy.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ impl Step for Std {
152152
vec![],
153153
true,
154154
false,
155-
);
155+
)
156+
.unwrap();
156157
}
157158
}
158159

@@ -226,7 +227,8 @@ impl Step for Rustc {
226227
vec![],
227228
true,
228229
false,
229-
);
230+
)
231+
.unwrap();
230232
}
231233
}
232234

@@ -295,7 +297,7 @@ macro_rules! lint_any {
295297
vec![],
296298
true,
297299
false,
298-
);
300+
).unwrap();
299301
}
300302
}
301303
)+

‎src/bootstrap/src/core/build_steps/compile.rs

+16-7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ use crate::core::builder::crate_description;
2727
use crate::core::builder::Cargo;
2828
use crate::core::builder::{Builder, Kind, PathSet, RunConfig, ShouldRun, Step, TaskPath};
2929
use crate::core::config::{DebuginfoLevel, LlvmLibunwind, RustcLto, TargetSelection};
30+
use crate::utils::exec::BehaviorOnFailure;
3031
use crate::utils::helpers::{
3132
exe, get_clang_cl_resource_dir, is_debug_info, is_dylib, output, symlink_dir, t, up_to_date,
3233
};
@@ -289,7 +290,8 @@ impl Step for Std {
289290
target_deps,
290291
self.is_for_mir_opt_tests, // is_check
291292
false,
292-
);
293+
)
294+
.unwrap();
293295

294296
builder.ensure(StdLink::from_std(
295297
self,
@@ -969,7 +971,8 @@ impl Step for Rustc {
969971
vec![],
970972
false,
971973
true, // Only ship rustc_driver.so and .rmeta files, not all intermediate .rlib files.
972-
);
974+
)
975+
.unwrap();
973976

974977
// When building `librustc_driver.so` (like `libLLVM.so`) on linux, it can contain
975978
// unexpected debuginfo from dependencies, for example from the C++ standard library used in
@@ -1381,7 +1384,7 @@ impl Step for CodegenBackend {
13811384
let tmp_stamp = out_dir.join(".tmp.stamp");
13821385

13831386
let _guard = builder.msg_build(compiler, format_args!("codegen backend {backend}"), target);
1384-
let files = run_cargo(builder, cargo, vec![], &tmp_stamp, vec![], false, false);
1387+
let files = run_cargo(builder, cargo, vec![], &tmp_stamp, vec![], false, false).unwrap();
13851388
if builder.config.dry_run() {
13861389
return;
13871390
}
@@ -1907,7 +1910,8 @@ pub fn run_cargo(
19071910
additional_target_deps: Vec<(PathBuf, DependencyType)>,
19081911
is_check: bool,
19091912
rlib_only_metadata: bool,
1910-
) -> Vec<PathBuf> {
1913+
) -> Result<Vec<PathBuf>, String> {
1914+
let failure_behavior = cargo.bootstrap_command.failure_behavior;
19111915
// `target_root_dir` looks like $dir/$target/release
19121916
let target_root_dir = stamp.parent().unwrap();
19131917
// `target_deps_dir` looks like $dir/$target/release/deps
@@ -2011,11 +2015,15 @@ pub fn run_cargo(
20112015
});
20122016

20132017
if !ok {
2014-
crate::exit!(1);
2018+
if failure_behavior == BehaviorOnFailure::Ignore {
2019+
return Ok(Vec::new());
2020+
}
2021+
2022+
return Err("Command failed.".to_owned());
20152023
}
20162024

20172025
if builder.config.dry_run() {
2018-
return Vec::new();
2026+
return Ok(Vec::new());
20192027
}
20202028

20212029
// Ok now we need to actually find all the files listed in `toplevel`. We've
@@ -2038,6 +2046,7 @@ pub fn run_cargo(
20382046
});
20392047
let path_to_add = match max {
20402048
Some(triple) => triple.0.to_str().unwrap(),
2049+
None if failure_behavior == BehaviorOnFailure::Ignore => continue,
20412050
None => panic!("no output generated for {prefix:?} {extension:?}"),
20422051
};
20432052
if is_dylib(path_to_add) {
@@ -2063,7 +2072,7 @@ pub fn run_cargo(
20632072
new_contents.extend(b"\0");
20642073
}
20652074
t!(fs::write(stamp, &new_contents));
2066-
deps.into_iter().map(|(d, _)| d).collect()
2075+
Ok(deps.into_iter().map(|(d, _)| d).collect())
20672076
}
20682077

20692078
pub fn stream_cargo(

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

+17-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use crate::core::builder;
99
use crate::core::builder::{Builder, Cargo as CargoCommand, RunConfig, ShouldRun, Step};
1010
use crate::core::config::TargetSelection;
1111
use crate::utils::channel::GitInfo;
12-
use crate::utils::exec::BootstrapCommand;
1312
use crate::utils::helpers::{add_dylib_path, exe, t};
1413
use crate::Compiler;
1514
use crate::Mode;
@@ -97,9 +96,12 @@ impl Step for ToolBuild {
9796
self.source_type,
9897
&self.extra_features,
9998
);
99+
cargo.bootstrap_command = cargo.bootstrap_command.allow_failure();
100+
100101
if !self.allow_features.is_empty() {
101102
cargo.allow_features(self.allow_features);
102103
}
104+
103105
let _guard = builder.msg_tool(
104106
Kind::Build,
105107
self.mode,
@@ -109,9 +111,20 @@ impl Step for ToolBuild {
109111
&self.target,
110112
);
111113

112-
let cargo = Command::from(cargo);
113-
// we check this below
114-
let build_success = builder.run_cmd(BootstrapCommand::from(cargo).allow_failure());
114+
let stamp = builder
115+
.cargo_out(compiler, Mode::ToolRustc, target)
116+
.join(format!(".{}-check.stamp", self.tool));
117+
118+
let build_success = compile::run_cargo(
119+
builder,
120+
cargo,
121+
builder.config.free_args.clone(),
122+
&stamp,
123+
vec![],
124+
false,
125+
false,
126+
)
127+
.is_ok();
115128

116129
builder.save_toolstate(
117130
tool,

‎src/bootstrap/src/core/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2383,7 +2383,7 @@ impl HostFlags {
23832383

23842384
#[derive(Debug)]
23852385
pub struct Cargo {
2386-
bootstrap_command: BootstrapCommand,
2386+
pub(crate) bootstrap_command: BootstrapCommand,
23872387
compiler: Compiler,
23882388
target: TargetSelection,
23892389
rustflags: Rustflags,

‎src/bootstrap/src/utils/exec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::process::Command;
22

33
/// What should be done when the command fails.
4-
#[derive(Debug, Copy, Clone)]
4+
#[derive(Debug, Copy, Clone, PartialEq)]
55
pub enum BehaviorOnFailure {
66
/// Immediately stop bootstrap.
77
Exit,

0 commit comments

Comments
 (0)
Failed to load comments.