]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/defaults/config.library.toml
Rollup merge of #96763 - Abdur-rahmaanJ:patch-1, r=Mark-Simulacrum
[rust.git] / src / bootstrap / defaults / config.library.toml
1 # These defaults are meant for contributors to the standard library and documentation.
2 [build]
3 # When building the standard library, you almost never want to build the compiler itself.
4 build-stage = 0
5 test-stage = 0
6 bench-stage = 0
7
8 [rust]
9 # This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
10 incremental = true
11
12 [llvm]
13 # Will download LLVM from CI if available on your platform.
14 download-ci-llvm = "if-available"