Skip to content

Commit 8fb272c

Browse files
committedFeb 24, 2021
Remove ENABLE_DOWNLOAD_RUSTC constant
This was introduced as part of the MVP for `download-rustc`. Unfortunately, it doesn't work very well: - Steps are ignored by default, which makes it easy to leave out a step that should be built. For example, the MVP forgot to enable any tests, so it was *only* possible to build locally. - It didn't work correctly even when it was enabled: calling `builder.ensure()` would completely ignore the constant and rebuild the step anyway. This has no obvious fix since `ensure()` has to return a `Step::Output`. Instead, this handles `download-rustc` in `impl Step for Rustc` and `impl Step for Std`, which to my knowledge are the only build steps that don't first go through `impl Step for Sysroot` (`Rustc` is used for the `rustc-dev` component). See rust-lang#79540 (comment) and rust-lang#81930 for further context. Here are some example runs with these changes and `download-rustc` enabled: ``` $ x.py build src/tools/clippy Building stage1 tool clippy-driver (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 1m 09s Building stage1 tool cargo-clippy (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 0.11s $ x.py test src/tools/clippy Updating only changed submodules Submodules updated in 0.01 seconds Finished dev [unoptimized + debuginfo] target(s) in 0.09s Building stage1 tool clippy-driver (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 0.09s Building rustdoc for stage1 (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 0.28s Finished release [optimized] target(s) in 15.26s Running build/x86_64-unknown-linux-gnu/stage1-tools/x86_64-unknown-linux-gnu/release/deps/clippy_driver-8b407b140e0aa91c test result: ok. 592 passed; 0 failed; 3 ignored; 0 measured; 0 filtered out $ x.py build src/tools/rustdoc Building rustdoc for stage1 (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 41.28s Build completed successfully in 0:00:41 $ x.py test src/test/rustdoc-ui Building stage0 tool compiletest (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 0.12s Building rustdoc for stage1 (x86_64-unknown-linux-gnu) Finished release [optimized] target(s) in 0.10s test result: ok. 105 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 8.15s $ x.py build compiler/rustc Finished dev [unoptimized + debuginfo] target(s) in 0.09s Build completed successfully in 0:00:00 ``` Note a few things: - Clippy depends on stage1 rustc-dev artifacts, but rustc didn't have to be recompiled. Instead, the artifacts were copied automatically. - All steps are always enabled. There is no danger of forgetting a step, since only the entrypoints have to handle `download-rustc`. - Building the compiler (`compiler/rustc`) automatically does no work.
1 parent fe1bf8e commit 8fb272c

File tree

4 files changed

+13
-23
lines changed

4 files changed

+13
-23
lines changed
 

‎src/bootstrap/builder.rs

-18
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,6 @@ pub trait Step: 'static + Clone + Debug + PartialEq + Eq + Hash {
5757
/// `true` here can still be overwritten by `should_run` calling `default_condition`.
5858
const DEFAULT: bool = false;
5959

60-
/// Whether this step should be run even when `download-rustc` is set.
61-
///
62-
/// Most steps are not important when the compiler is downloaded, since they will be included in
63-
/// the pre-compiled sysroot. Steps can set this to `true` to be built anyway.
64-
///
65-
/// When in doubt, set this to `false`.
66-
const ENABLE_DOWNLOAD_RUSTC: bool = false;
67-
6860
/// If true, then this rule should be skipped if --target was specified, but --host was not
6961
const ONLY_HOSTS: bool = false;
7062

@@ -107,7 +99,6 @@ impl RunConfig<'_> {
10799

108100
struct StepDescription {
109101
default: bool,
110-
enable_download_rustc: bool,
111102
only_hosts: bool,
112103
should_run: fn(ShouldRun<'_>) -> ShouldRun<'_>,
113104
make_run: fn(RunConfig<'_>),
@@ -162,7 +153,6 @@ impl StepDescription {
162153
fn from<S: Step>() -> StepDescription {
163154
StepDescription {
164155
default: S::DEFAULT,
165-
enable_download_rustc: S::ENABLE_DOWNLOAD_RUSTC,
166156
only_hosts: S::ONLY_HOSTS,
167157
should_run: S::should_run,
168158
make_run: S::make_run,
@@ -179,14 +169,6 @@ impl StepDescription {
179169
"{:?} not skipped for {:?} -- not in {:?}",
180170
pathset, self.name, builder.config.exclude
181171
);
182-
} else if builder.config.download_rustc && !self.enable_download_rustc {
183-
if !builder.config.dry_run {
184-
eprintln!(
185-
"Not running {} because its artifacts have been downloaded from CI (`download-rustc` is set)",
186-
self.name
187-
);
188-
}
189-
return;
190172
}
191173

192174
// Determine the targets participating in this rule.

‎src/bootstrap/check.rs

-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ fn cargo_subcommand(kind: Kind) -> &'static str {
6262
impl Step for Std {
6363
type Output = ();
6464
const DEFAULT: bool = true;
65-
const ENABLE_DOWNLOAD_RUSTC: bool = true;
6665

6766
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
6867
run.all_krates("test")
@@ -156,7 +155,6 @@ impl Step for Rustc {
156155
type Output = ();
157156
const ONLY_HOSTS: bool = true;
158157
const DEFAULT: bool = true;
159-
const ENABLE_DOWNLOAD_RUSTC: bool = true;
160158

161159
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
162160
run.all_krates("rustc-main")
@@ -235,7 +233,6 @@ impl Step for CodegenBackend {
235233
type Output = ();
236234
const ONLY_HOSTS: bool = true;
237235
const DEFAULT: bool = true;
238-
const ENABLE_DOWNLOAD_RUSTC: bool = true;
239236

240237
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
241238
run.paths(&["compiler/rustc_codegen_cranelift", "rustc_codegen_cranelift"])
@@ -293,7 +290,6 @@ macro_rules! tool_check_step {
293290
type Output = ();
294291
const ONLY_HOSTS: bool = true;
295292
const DEFAULT: bool = true;
296-
const ENABLE_DOWNLOAD_RUSTC: bool = true;
297293

298294
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
299295
run.path($path)

‎src/bootstrap/compile.rs

+13
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ impl Step for Std {
6363
let target = self.target;
6464
let compiler = self.compiler;
6565

66+
// These artifacts were already copied (in `impl Step for Sysroot`).
67+
// Don't recompile them.
68+
if builder.config.download_rustc {
69+
return;
70+
}
71+
6672
if builder.config.keep_stage.contains(&compiler.stage)
6773
|| builder.config.keep_stage_std.contains(&compiler.stage)
6874
{
@@ -494,6 +500,13 @@ impl Step for Rustc {
494500
let compiler = self.compiler;
495501
let target = self.target;
496502

503+
if builder.config.download_rustc {
504+
// Copy the existing artifacts instead of rebuilding them.
505+
// NOTE: this path is only taken for tools linking to rustc-dev.
506+
builder.ensure(Sysroot { compiler });
507+
return;
508+
}
509+
497510
builder.ensure(Std { compiler, target });
498511

499512
if builder.config.keep_stage.contains(&compiler.stage) {

‎src/bootstrap/tool.rs

-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,6 @@ pub struct Rustdoc {
477477
impl Step for Rustdoc {
478478
type Output = PathBuf;
479479
const DEFAULT: bool = true;
480-
const ENABLE_DOWNLOAD_RUSTC: bool = true;
481480
const ONLY_HOSTS: bool = true;
482481

483482
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {

0 commit comments

Comments
 (0)
Please sign in to comment.