]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/defaults/config.compiler.toml
Rollup merge of #84083 - ltratt:threadid_doc_tweak, r=dtolnay
[rust.git] / src / bootstrap / defaults / config.compiler.toml
1 # These defaults are meant for contributors to the compiler who do not modify codegen or LLVM
2 [rust]
3 # This enables `RUSTC_LOG=debug`, avoiding confusing situations
4 # where adding `debug!()` appears to do nothing.
5 # However, it makes running the compiler slightly slower.
6 debug-logging = true
7 # This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
8 incremental = true
9 # Print backtrace on internal compiler errors during bootstrap
10 backtrace-on-ice = true
11
12 [llvm]
13 # Will download LLVM from CI if available on your platform.
14 download-ci-llvm = "if-available"