File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-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
Original file line number Diff line number Diff line change @@ -541,4 +541,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
541
541
severity : ChangeSeverity :: Info ,
542
542
summary : "Added a new option `rust.break-on-ice` to control if internal compiler errors cause a debug break on Windows." ,
543
543
} ,
544
+ ChangeInfo {
545
+ change_id : 146435 ,
546
+ severity : ChangeSeverity :: Info ,
547
+ summary : "The default value of the `gcc.download-ci-gcc` option has been changed to `true`." ,
548
+ } ,
544
549
] ;
You can’t perform that action at this time.
0 commit comments