Skip to content

Commit 9adbf62

Browse files
authored
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.
1 parent c720f49 commit 9adbf62

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/defaults/bootstrap.library.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ lto = "off"
1212
#
1313
# If compiler-affecting directories are not modified, use precompiled rustc to speed up
1414
# library development by skipping compiler builds.
15-
download-rustc = "if-unchanged"
15+
# FIXME: download-rustc is currently broken: https://github.com/rust-lang/rust/issues/142505
16+
download-rustc = false
1617

1718
[llvm]
1819
# Will download LLVM from CI if available on your platform.

0 commit comments

Comments
 (0)