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