File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ compiletest-use-stage0-libtest = false
14
14
[llvm ]
15
15
download-ci-llvm = false
16
16
17
+ # Most users installing from source want to build all parts of the project from source.
18
+ [gcc ]
19
+ download-ci-gcc = false
20
+
17
21
[rust ]
18
22
# We have several defaults in bootstrap that depend on whether the channel is `dev` (e.g. `omit-git-hash` and `download-ci-llvm`).
19
23
# Make sure they don't get set when installing from source.
Original file line number Diff line number Diff line change @@ -422,10 +422,10 @@ impl std::str::FromStr for RustcLto {
422
422
#[ derive( Default , Clone ) ]
423
423
pub enum GccCiMode {
424
424
/// Build GCC from the local `src/gcc` submodule.
425
- #[ default]
426
425
BuildLocally ,
427
426
/// Try to download GCC from CI.
428
427
/// If it is not available on CI, it will be built locally instead.
428
+ #[ default]
429
429
DownloadFromCi ,
430
430
}
431
431
You can’t perform that action at this time.
0 commit comments