diff options
| author | nora <48135649+Noratrieb@users.noreply.github.com> | 2025-07-07 13:02:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-07 13:02:00 +0200 |
| commit | 9adbf6270ec86af6f3cd28e5a315553a034b0d4d (patch) | |
| tree | 4090242f2d0fd851c7a850bf930570a5cea24b13 /src/bootstrap | |
| parent | c720f49c46ec3e70bbc2bbb3e0dd1fe7fc0a47f2 (diff) | |
| download | rust-9adbf6270ec86af6f3cd28e5a315553a034b0d4d.tar.gz rust-9adbf6270ec86af6f3cd28e5a315553a034b0d4d.zip | |
Disable download-rustc for library profile
The feature currently completely breaks `x test`, core functionality of working on the standard library. Therefore it should be disabled by default until that problem is fixed. Having to wait a bit longer for a check build is nothing compared to completely mysterious build errors when testing.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/defaults/bootstrap.library.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/defaults/bootstrap.library.toml b/src/bootstrap/defaults/bootstrap.library.toml index 24ff87191d6..3f811402b26 100644 --- a/src/bootstrap/defaults/bootstrap.library.toml +++ b/src/bootstrap/defaults/bootstrap.library.toml @@ -12,7 +12,8 @@ lto = "off" # # If compiler-affecting directories are not modified, use precompiled rustc to speed up # library development by skipping compiler builds. -download-rustc = "if-unchanged" +# FIXME: download-rustc is currently broken: https://github.com/rust-lang/rust/issues/142505 +download-rustc = false [llvm] # Will download LLVM from CI if available on your platform. |
