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
1414[llvm ]
1515download-ci-llvm = false
1616
17+ # Most users installing from source want to build all parts of the project from source.
18+ [gcc ]
19+ download-ci-gcc = false
20+
1721[rust ]
1822# We have several defaults in bootstrap that depend on whether the channel is `dev` (e.g. `omit-git-hash` and `download-ci-llvm`).
1923# 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 {
422422#[ derive( Default , Clone ) ]
423423pub enum GccCiMode {
424424 /// Build GCC from the local `src/gcc` submodule.
425- #[ default]
426425 BuildLocally ,
427426 /// Try to download GCC from CI.
428427 /// If it is not available on CI, it will be built locally instead.
428+ #[ default]
429429 DownloadFromCi ,
430430}
431431
Original file line number Diff line number Diff line change @@ -541,4 +541,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
541541 severity : ChangeSeverity :: Info ,
542542 summary : "Added a new option `rust.break-on-ice` to control if internal compiler errors cause a debug break on Windows." ,
543543 } ,
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+ } ,
544549] ;
You can’t perform that action at this time.
0 commit comments