Remove --enable-save-analysis configure flag

This commit is contained in:
Nick Cameron
2017-04-05 11:34:14 +12:00
parent 223b280f31
commit 5766d526a2
9 changed files with 6 additions and 22 deletions

View File

@@ -545,7 +545,7 @@ impl Build {
.env(format!("CFLAGS_{}", target), self.cflags(target).join(" "));
}
if self.config.rust_save_analysis && compiler.is_final_stage(self) {
if self.config.extended && compiler.is_final_stage(self) {
cargo.env("RUSTC_SAVE_ANALYSIS", "api".to_string());
}