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.
1 parent 8c65a66 commit af25358Copy full SHA for af25358
src/bootstrap/builder.rs
@@ -1095,6 +1095,11 @@ impl<'a> Builder<'a> {
1095
rustflags.arg("-Zunstable-options");
1096
}
1097
1098
+ if stage != 0 {
1099
+ // FIXME remove once cargo enables this by default
1100
+ rustflags.arg("-Zsplit-metadata");
1101
+ }
1102
+
1103
// FIXME: It might be better to use the same value for both `RUSTFLAGS` and `RUSTDOCFLAGS`,
1104
// but this breaks CI. At the very least, stage0 `rustdoc` needs `--cfg bootstrap`. See
1105
// #71458.
0 commit comments