add reachable_only to save-analysis config

This commit is contained in:
Andy Russell 2017-11-22 16:09:43 -05:00
parent b082f78024
commit 794ada06e7
No known key found for this signature in database
GPG Key ID: BE2221033EDBC374

View File

@ -183,7 +183,8 @@ fn main() {
if env::var("RUSTC_SAVE_ANALYSIS") == Ok("api".to_string()) {
cmd.arg("-Zsave-analysis");
cmd.env("RUST_SAVE_ANALYSIS_CONFIG",
"{\"output_file\": null,\"full_docs\": false,\"pub_only\": true,\
"{\"output_file\": null,\"full_docs\": false,\
\"pub_only\": true,\"reachable_only\": false,\
\"distro_crate\": true,\"signatures\": false,\"borrow_data\": false}");
}