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 d3201bd commit 4980543Copy full SHA for 4980543
1 file changed
src/tools/unstable-book-gen/src/main.rs
@@ -125,6 +125,7 @@ fn copy_recursive(from: &Path, to: &Path) {
125
126
fn collect_compiler_flags(rustc_path: impl AsRef<Path>) -> Features {
127
let mut rustc = Command::new(rustc_path.as_ref());
128
+ rustc.env("RUSTC_BOOTSTRAP", "1");
129
rustc.arg("-Zhelp");
130
let output = t!(rustc.output());
131
let help_str = t!(String::from_utf8(output.stdout));
0 commit comments