@@ -835,13 +835,13 @@ impl Rustc {
835
835
}
836
836
837
837
impl Step for Rustc {
838
- // We return the stage of the "actual" compiler (not the uplifted one).
839
- //
840
- // By "actual" we refer to the uplifting logic where we may not compile the requested stage;
841
- // instead, we uplift it from the previous stages. Which can lead to bootstrap failures in
842
- // specific situations where we request stage X from other steps. However we may end up
843
- // uplifting it from stage Y, causing the other stage to fail when attempting to link with
844
- // stage X which was never actually built.
838
+ /// We return the stage of the "actual" compiler (not the uplifted one).
839
+ ///
840
+ /// By "actual" we refer to the uplifting logic where we may not compile the requested stage;
841
+ /// instead, we uplift it from the previous stages. Which can lead to bootstrap failures in
842
+ /// specific situations where we request stage X from other steps. However we may end up
843
+ /// uplifting it from stage Y, causing the other stage to fail when attempting to link with
844
+ /// stage X which was never actually built.
845
845
type Output = u32 ;
846
846
const ONLY_HOSTS : bool = true ;
847
847
const DEFAULT : bool = false ;
@@ -1302,7 +1302,7 @@ fn is_codegen_cfg_needed(path: &TaskPath, run: &RunConfig<'_>) -> bool {
1302
1302
impl Step for CodegenBackend {
1303
1303
type Output = ( ) ;
1304
1304
const ONLY_HOSTS : bool = true ;
1305
- // Only the backends specified in the `codegen-backends` entry of `config.toml` are built.
1305
+ /// Only the backends specified in the `codegen-backends` entry of `config.toml` are built.
1306
1306
const DEFAULT : bool = true ;
1307
1307
1308
1308
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
0 commit comments