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 a53bd20 commit 4b6635eCopy full SHA for 4b6635e
src/librustc_driver/lib.rs
@@ -1151,6 +1151,14 @@ pub fn version(binary: &str, matches: &getopts::Matches) {
1151
println!("host: {}", config::host_triple());
1152
println!("release: {}", unw(release_str()));
1153
get_codegen_sysroot("llvm")().print_version();
1154
+
1155
+ if nightly_options::is_nightly_build() {
1156
+ println!("parallel-queries: {}", if cfg!(parallel_queries) {
1157
+ "yes"
1158
+ } else {
1159
+ "no"
1160
+ });
1161
+ }
1162
}
1163
1164
0 commit comments