We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dist::CodegenBackend
1 parent aefd7ac commit f656accCopy full SHA for f656acc
src/bootstrap/src/core/build_steps/dist.rs
@@ -1298,6 +1298,10 @@ impl Step for CodegenBackend {
1298
}
1299
1300
fn run(self, builder: &Builder<'_>) -> Option<GeneratedTarball> {
1301
+ if builder.config.dry_run() {
1302
+ return None;
1303
+ }
1304
+
1305
// This prevents rustc_codegen_cranelift from being built for "dist"
1306
// or "install" on the stable/beta channels. It is not yet stable and
1307
// should not be included.
0 commit comments