We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08bac2 commit 1b55922Copy full SHA for 1b55922
src/bootstrap/src/core/build_steps/gcc.rs
@@ -110,7 +110,7 @@ impl Step for Gcc {
110
// If GCC has already been built, we avoid building it again.
111
let metadata = match get_gcc_build_status(builder, target) {
112
GccBuildStatus::AlreadyBuilt(path) => return GccOutput { libgccjit: Some(path), target },
113
- GccBuildStatus::InLibsDir => return GccOutput { libgccjit: None },
+ GccBuildStatus::InLibsDir => return GccOutput { libgccjit: None, target },
114
GccBuildStatus::ShouldBuild(m) => m,
115
};
116
0 commit comments