]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/defaults/config.compiler.toml
Auto merge of #105550 - gimbles:master, r=Nilstrieb
[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 [build]
3 # Contributors working on the compiler will probably expect compiler docs to be generated.
4 compiler-docs = true
5
6 [rust]
7 # This enables `RUSTC_LOG=debug`, avoiding confusing situations
8 # where adding `debug!()` appears to do nothing.
9 # However, it makes running the compiler slightly slower.
10 debug-logging = true
11 # This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
12 incremental = true
13 # Print backtrace on internal compiler errors during bootstrap
14 backtrace-on-ice = true
15
16 [llvm]
17 # Will download LLVM from CI if available on your platform.
18 download-ci-llvm = "if-available"