Enable RUSTC_BOOTSTRAP for a few steps

This commit is contained in:
Mark Rousskov
2022-08-08 09:36:42 -04:00
parent e59768898c
commit cbf9902845
+3
View File
@@ -1003,6 +1003,7 @@ fn run(self, builder: &Builder<'_>) {
.arg("doc")
.arg("--target-dir")
.arg(&out_dir)
.env("RUSTC_BOOTSTRAP", "1")
.env("RUSTDOC", builder.rustdoc(self.compiler))
.env("RUSTC", builder.rustc(self.compiler))
.current_dir(path);
@@ -1723,6 +1724,8 @@ fn run_ext_doc(self, builder: &Builder<'_>) {
let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
let path = builder.src.join(&self.path);
// Books often have feature-gated example text.
rustbook_cmd.env("RUSTC_BOOTSTRAP", "1");
rustbook_cmd.env("PATH", new_path).arg("test").arg(path);
builder.add_rust_test_threads(&mut rustbook_cmd);
builder.info(&format!("Testing rustbook {}", self.path.display()));