Skip to content

Commit df050f6

Browse files
committed
Fix tidy
1 parent 4209f95 commit df050f6

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
@@ -204,7 +204,7 @@ fn try_download_gcc(_builder: &Builder<'_>, _target: TargetSelection) -> Option<
204204
/// GCC, it's fine for us to not try to avoid doing so.
205205
pub fn get_gcc_build_status(builder: &Builder<'_>, target: TargetSelection) -> GccBuildStatus {
206206
if matches!(builder.config.gcc_ci_mode, crate::core::config::GccCiMode::CopyFromLibsDir) {
207-
// TODO: check if this is OK.
207+
// FIXME: check if this is OK.
208208
return GccBuildStatus::InLibsDir;
209209
}
210210

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)