diff --git a/src/librustc_driver/lib.rs b/src/librustc_driver/lib.rs index 84f7b35d21f33..5f5a2e2361d3c 100644 --- a/src/librustc_driver/lib.rs +++ b/src/librustc_driver/lib.rs @@ -1151,6 +1151,14 @@ pub fn version(binary: &str, matches: &getopts::Matches) { println!("host: {}", config::host_triple()); println!("release: {}", unw(release_str())); get_codegen_sysroot("llvm")().print_version(); + + if nightly_options::is_nightly_build() { + println!("parallel-queries: {}", if cfg!(parallel_queries) { + "yes" + } else { + "no" + }); + } } }