Skip to content

Commit 7b3a781

Browse files
committed
Auto merge of #73964 - jyn514:sane-defaults, r=Mark-Simulacrum
Improve defaults in x.py - Make the default stage dependent on the subcommand - Don't build stage1 rustc artifacts with x.py build --stage 1. If this is what you want, use x.py build --stage 2 instead, which gives you a working libstd. - Change default debuginfo when debug = true from 2 to 1 I tried to fix CI to use `--stage 2` everywhere it currently has no stage, but I might have missed a spot. This does not update much of the documentation - most of it is in https://github.com/rust-lang/rustc-dev-guide/ or https://github.com/rust-lang/rust-forge and will need a separate PR. See individual commits for a detailed rationale of each change. See also the MCP: rust-lang/compiler-team#326 r? @Mark-Simulacrum , but anyone is free to give an opinion.
2 parents 2c28244 + da40cf8 commit 7b3a781

File tree

31 files changed

+660
-536
lines changed

31 files changed

+660
-536
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ jobs:
406406
os: windows-latest-xl
407407
- name: x86_64-msvc-cargo
408408
env:
409-
SCRIPT: python x.py test src/tools/cargotest src/tools/cargo
409+
SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo
410410
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-lld"
411411
VCVARS_BAT: vcvars64.bat
412412
NO_DEBUG_ASSERTIONS: 1
@@ -598,7 +598,7 @@ jobs:
598598
os: macos-latest
599599
- name: x86_64-apple
600600
env:
601-
SCRIPT: "./x.py test"
601+
SCRIPT: "./x.py --stage 2 test"
602602
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc"
603603
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
604604
MACOSX_DEPLOYMENT_TARGET: 10.8

config.toml.example

+4-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,10 @@
341341
# Debuginfo for tests run with compiletest is not controlled by this option
342342
# and needs to be enabled separately with `debuginfo-level-tests`.
343343
#
344-
# Defaults to 2 if debug is true
344+
# Note that debuginfo-level = 2 generates several gigabytes of debuginfo
345+
# and will slow down the linking process significantly.
346+
#
347+
# Defaults to 1 if debug is true
345348
#debuginfo-level = 0
346349

347350
# Debuginfo level for the compiler.

src/bootstrap/builder.rs

+41-19
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ impl StepDescription {
232232
}
233233

234234
if !attempted_run {
235-
panic!("Error: no rules matched {}.", path.display());
235+
panic!("error: no rules matched {}", path.display());
236236
}
237237
}
238238
}
@@ -501,16 +501,7 @@ impl<'a> Builder<'a> {
501501
_ => return None,
502502
};
503503

504-
let builder = Builder {
505-
build,
506-
top_stage: build.config.stage.unwrap_or(2),
507-
kind,
508-
cache: Cache::new(),
509-
stack: RefCell::new(Vec::new()),
510-
time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
511-
paths: vec![],
512-
};
513-
504+
let builder = Self::new_internal(build, kind, vec![]);
514505
let builder = &builder;
515506
let mut should_run = ShouldRun::new(builder);
516507
for desc in Builder::get_step_descriptions(builder.kind) {
@@ -535,6 +526,32 @@ impl<'a> Builder<'a> {
535526
Some(help)
536527
}
537528

529+
fn new_internal(build: &Build, kind: Kind, paths: Vec<PathBuf>) -> Builder<'_> {
530+
let top_stage = if let Some(explicit_stage) = build.config.stage {
531+
explicit_stage
532+
} else {
533+
// See https://github.com/rust-lang/compiler-team/issues/326
534+
match kind {
535+
Kind::Doc => 0,
536+
Kind::Build | Kind::Test => 1,
537+
Kind::Bench | Kind::Dist | Kind::Install => 2,
538+
// These are all bootstrap tools, which don't depend on the compiler.
539+
// The stage we pass shouldn't matter, but use 0 just in case.
540+
Kind::Check | Kind::Clippy | Kind::Fix | Kind::Run | Kind::Format => 0,
541+
}
542+
};
543+
544+
Builder {
545+
build,
546+
top_stage,
547+
kind,
548+
cache: Cache::new(),
549+
stack: RefCell::new(Vec::new()),
550+
time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
551+
paths,
552+
}
553+
}
554+
538555
pub fn new(build: &Build) -> Builder<'_> {
539556
let (kind, paths) = match build.config.cmd {
540557
Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
@@ -550,15 +567,20 @@ impl<'a> Builder<'a> {
550567
Subcommand::Format { .. } | Subcommand::Clean { .. } => panic!(),
551568
};
552569

553-
Builder {
554-
build,
555-
top_stage: build.config.stage.unwrap_or(2),
556-
kind,
557-
cache: Cache::new(),
558-
stack: RefCell::new(Vec::new()),
559-
time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
560-
paths: paths.to_owned(),
570+
let this = Self::new_internal(build, kind, paths.to_owned());
571+
572+
// CI should always run stage 2 builds, unless it specifically states otherwise
573+
#[cfg(not(test))]
574+
if build.config.stage.is_none() && build.ci_env != crate::CiEnv::None {
575+
match kind {
576+
Kind::Test | Kind::Doc | Kind::Build | Kind::Bench | Kind::Dist | Kind::Install => {
577+
assert_eq!(this.top_stage, 2)
578+
}
579+
Kind::Check | Kind::Clippy | Kind::Fix | Kind::Run | Kind::Format => {}
580+
}
561581
}
582+
583+
this
562584
}
563585

564586
pub fn execute_cli(&self) {

0 commit comments

Comments
 (0)