Skip to content

Commit e8e5eb5

Browse files
committed
Ensure libraries built in stage0 have unique metadata
Issue #50786 shows a case with local rebuild where the libraries built by stage0 had the same suffix as stage0's own, and were accidentally loaded by that stage0 rustc when compiling `librustc_trans`. Now we set `__CARGO_DEFAULT_LIB_METADATA` to "bootstrap" during stage0, rather than the release channel like usual, so the library suffix will always be completely distinct from the stage0 compiler.
1 parent f0fdaba commit e8e5eb5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/bootstrap/builder.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,15 @@ impl<'a> Builder<'a> {
592592

593593
// FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
594594
// Force cargo to output binaries with disambiguating hashes in the name
595-
cargo.env("__CARGO_DEFAULT_LIB_METADATA", &self.config.channel);
595+
let metadata = if compiler.stage == 0 {
596+
// Treat stage0 like special channel, whether it's a normal prior-
597+
// release rustc or a local rebuild with the same version, so we
598+
// never mix these libraries by accident.
599+
"bootstrap"
600+
} else {
601+
&self.config.channel
602+
};
603+
cargo.env("__CARGO_DEFAULT_LIB_METADATA", &metadata);
596604

597605
let stage;
598606
if compiler.stage == 0 && self.local_rebuild {

0 commit comments

Comments
 (0)