diff options
| author | onur-ozkan <work@onurozkan.dev> | 2025-03-14 23:19:55 +0300 |
|---|---|---|
| committer | onur-ozkan <work@onurozkan.dev> | 2025-05-30 21:04:14 +0300 |
| commit | fcee761e50b70a2330e7c315f8f580a494d6c70b (patch) | |
| tree | bb950d9b319cf0c04c75f9f45d81e9cf9d98024e /src/bootstrap/defaults | |
| parent | caca33192b650456a92561930d76abae58780e0e (diff) | |
improve comments and docs
Signed-off-by: onur-ozkan <work@onurozkan.dev>
Diffstat (limited to 'src/bootstrap/defaults')
| -rw-r--r-- | src/bootstrap/defaults/bootstrap.library.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bootstrap/defaults/bootstrap.library.toml b/src/bootstrap/defaults/bootstrap.library.toml index 1df97394d51..6edd00922ae 100644 --- a/src/bootstrap/defaults/bootstrap.library.toml +++ b/src/bootstrap/defaults/bootstrap.library.toml @@ -1,6 +1,5 @@ # These defaults are meant for contributors to the standard library and documentation. [build] -# When building the standard library, you almost never want to build the compiler itself. build-stage = 1 test-stage = 1 bench-stage = 1 @@ -10,8 +9,10 @@ bench-stage = 1 incremental = true # Make the compiler and standard library faster to build, at the expense of a ~20% runtime slowdown. lto = "off" -# Download rustc by default for library profile if compiler-affecting -# directories are not modified. For CI this is disabled. +# When building the standard library, you almost never want to build the compiler itself. +# +# If compiler-affecting directories are not modified, use precompiled rustc to speed up +# library development by skipping compiler builds. download-rustc = "if-unchanged" [llvm] |
