We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rustc_codegen_gcc
1 parent 2e6ac7f commit c6232b1Copy full SHA for c6232b1
src/bootstrap/check.rs
@@ -307,6 +307,12 @@ impl Step for CodegenBackend {
307
}
308
309
fn run(self, builder: &Builder<'_>) {
310
+ // FIXME: remove once https://github.com/rust-lang/rust/issues/112393 is resolved
311
+ if builder.build.config.vendor && &self.backend == "gcc" {
312
+ println!("Skipping checking of `rustc_codegen_gcc` with vendoring enabled.");
313
+ return;
314
+ }
315
+
316
let compiler = builder.compiler(builder.top_stage, builder.config.build);
317
let target = self.target;
318
let backend = self.backend;
0 commit comments