]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/defaults/config.codegen.toml
Merge commit '533f0fc81ab9ba097779fcd27c8f9ea12261fef5' into psimd
[rust.git] / src / bootstrap / defaults / config.codegen.toml
1 # These defaults are meant for contributors to the compiler who modify codegen or LLVM
2 [llvm]
3 # This enables debug-assertions in LLVM,
4 # catching logic errors in codegen much earlier in the process.
5 assertions = true
6
7 [rust]
8 # This enables `RUSTC_LOG=debug`, avoiding confusing situations
9 # where adding `debug!()` appears to do nothing.
10 # However, it makes running the compiler slightly slower.
11 debug-logging = true
12 # This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
13 incremental = true
14 # Print backtrace on internal compiler errors during bootstrap
15 backtrace-on-ice = true