From 40176388d2c79d4ae268f683b9503b39deb565aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Thu, 3 Jul 2025 18:04:10 +0200 Subject: [PATCH] Add staging comment to `check::Rustc` --- src/bootstrap/src/core/build_steps/check.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bootstrap/src/core/build_steps/check.rs b/src/bootstrap/src/core/build_steps/check.rs index 9f12059d4eec..28644ecc340a 100644 --- a/src/bootstrap/src/core/build_steps/check.rs +++ b/src/bootstrap/src/core/build_steps/check.rs @@ -187,6 +187,8 @@ impl Step for Rustc { /// This will check the compiler for a particular stage of the build using /// the `compiler` targeting the `target` architecture. The artifacts /// created will also be linked into the sysroot directory. + /// + /// If we check a stage 2 compiler, we will have to first build a stage 1 compiler to check it. fn run(self, builder: &Builder<'_>) { let build_compiler = self.build_compiler; let target = self.target;