]> git.lizzy.rs Git - rust.git/blobdiff - src/bootstrap/flags.rs
Remove the source archive functionality of ArchiveWriter
[rust.git] / src / bootstrap / flags.rs
index 9827a6c590b57b4fd2487cb19e62aa9fb0bbd2b8..9d4bb978bdc4ded69c524013411e886a9d7811a3 100644 (file)
@@ -210,7 +210,7 @@ pub fn parse(args: &[String]) -> Flags {
         let j_msg = format!(
             "number of jobs to run in parallel; \
              defaults to {} (this host's logical CPU count)",
-            std::thread::available_parallelism().map_or(1, std::num::NonZeroUsize::get)
+            num_cpus::get()
         );
         opts.optopt("j", "jobs", &j_msg, "JOBS");
         opts.optflag("h", "help", "print this help message");
@@ -452,7 +452,7 @@ pub fn parse(args: &[String]) -> Flags {
         ./x.py test library/std --test-args hash_map
         ./x.py test library/std --stage 0 --no-doc
         ./x.py test src/test/ui --bless
-        ./x.py test src/test/ui --compare-mode nll
+        ./x.py test src/test/ui --compare-mode chalk
 
     Note that `test src/test/* --stage N` does NOT depend on `build compiler/rustc --stage N`;
     just like `build library/std --stage N` it tests the compiler produced by the previous