Skip to content

Commit f61b743

Browse files
committed
Fix tidy
1 parent 2051784 commit f61b743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bootstrap/src/core/build_steps/gcc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ fn try_download_gcc(_builder: &Builder<'_>, _target: TargetSelection) -> Option<
209209
/// GCC, it's fine for us to not try to avoid doing so.
210210
pub fn get_gcc_build_status(builder: &Builder<'_>, target: TargetSelection) -> GccBuildStatus {
211211
if matches!(builder.config.gcc_ci_mode, crate::core::config::GccCiMode::CopyFromLibsDir) {
212-
// TODO: check if this is OK.
212+
// FIXME: check if this is OK.
213213
return GccBuildStatus::InLibsDir;
214214
}
215215

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,6 @@ impl Config {
13301330
free_args: flags_free_args,
13311331
full_bootstrap: build_full_bootstrap.unwrap_or(false),
13321332
gcc_ci_mode,
1333-
libgccjit_libs_dir,
13341333
gdb: build_gdb.map(PathBuf::from),
13351334
host_target,
13361335
hosts,
@@ -1350,6 +1349,7 @@ impl Config {
13501349
keep_stage: flags_keep_stage,
13511350
keep_stage_std: flags_keep_stage_std,
13521351
libdir: install_libdir.map(PathBuf::from),
1352+
libgccjit_libs_dir,
13531353
library_docs_private_items: build_library_docs_private_items.unwrap_or(false),
13541354
lld_enabled,
13551355
lldb: build_lldb.map(PathBuf::from),

0 commit comments

Comments
 (0)