Skip to content

Commit c008a4b

Browse files
committed
make gcc toml fields follow a specific naming convention
1 parent d3d3b10 commit c008a4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/src/core/config/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,9 +1237,9 @@ impl Config {
12371237
config.llvm_link_shared.set(Some(true));
12381238
}
12391239

1240-
let Gcc { download_ci_gcc: gcc_download_ci_gcc } = toml.gcc.unwrap_or_default();
1240+
let Gcc { download_ci_gcc: gcc_download_ci_gcc_toml } = toml.gcc.unwrap_or_default();
12411241

1242-
config.gcc_ci_mode = match gcc_download_ci_gcc {
1242+
config.gcc_ci_mode = match gcc_download_ci_gcc_toml {
12431243
Some(value) => match value {
12441244
true => GccCiMode::DownloadFromCi,
12451245
false => GccCiMode::BuildLocally,

0 commit comments

Comments
 (0)