Skip to content

Commit 1b55922

Browse files
committed
Add missing target field
1 parent b08bac2 commit 1b55922

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl Step for Gcc {
110110
// If GCC has already been built, we avoid building it again.
111111
let metadata = match get_gcc_build_status(builder, target) {
112112
GccBuildStatus::AlreadyBuilt(path) => return GccOutput { libgccjit: Some(path), target },
113-
GccBuildStatus::InLibsDir => return GccOutput { libgccjit: None },
113+
GccBuildStatus::InLibsDir => return GccOutput { libgccjit: None, target },
114114
GccBuildStatus::ShouldBuild(m) => m,
115115
};
116116

0 commit comments

Comments
 (0)