]> git.lizzy.rs Git - rust.git/blobdiff - config.toml.example
Rollup merge of #76522 - matthiaskrgr:redundant_clone, r=jonas-schievink
[rust.git] / config.toml.example
index 9abb8add785a9352cb46bb4ef49009b3838c4724..be23efae5294b3897332474161e064a5b4ed5234 100644 (file)
 # Number of codegen units to use for each compiler invocation. A value of 0
 # means "the number of cores on this machine", and 1+ is passed through to the
 # compiler.
-#codegen-units = 1
+#
+# Uses the rustc defaults: https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
+#codegen-units = if incremental { 256 } else { 16 }
 
 # Sets the number of codegen units to build the standard library with,
 # regardless of what the codegen-unit setting for the rest of the compiler is.
 # desired in distributions, for example.
 #rpath = true
 
-# Emits extra output from tests so test failures are debuggable just from logfiles.
+# Prints each test name as it is executed, to help debug issues in the test harness itself.
 #verbose-tests = false
 
 # Flag indicating whether tests are compiled with optimizations (the -O flag).