We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RUSTC_BOOTSTRAP
x doc
1 parent 553ecbe commit 9fc7ecaCopy full SHA for 9fc7eca
src/bootstrap/doc.rs
@@ -1027,10 +1027,11 @@ impl Step for RustcBook {
1027
if self.validate {
1028
cmd.arg("--validate");
1029
}
1030
- if !builder.unstable_features() {
1031
- // We need to validate nightly features, even on the stable channel.
1032
- cmd.env("RUSTC_BOOTSTRAP", "1");
1033
- }
+ // We need to validate nightly features, even on the stable channel.
+ // Set this unconditionally as the stage0 compiler may be being used to
+ // document.
+ cmd.env("RUSTC_BOOTSTRAP", "1");
1034
+
1035
// If the lib directories are in an unusual location (changed in
1036
// config.toml), then this needs to explicitly update the dylib search
1037
// path.
0 commit comments