We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e4751 commit 51238c7Copy full SHA for 51238c7
src/bootstrap/compile.rs
@@ -630,6 +630,8 @@ impl Step for CodegenBackend {
630
.arg(build.src.join("src/librustc_trans/Cargo.toml"));
631
rustc_cargo_env(build, &mut cargo);
632
633
+ let _folder = build.fold_output(|| format!("stage{}-rustc_trans", compiler.stage));
634
+
635
match &*self.backend {
636
"llvm" | "emscripten" => {
637
// Build LLVM for our target. This will implicitly build the
@@ -643,7 +645,6 @@ impl Step for CodegenBackend {
643
645
features.push_str(" emscripten");
644
646
}
647
- let _folder = build.fold_output(|| format!("stage{}-rustc_trans", compiler.stage));
648
println!("Building stage{} codegen artifacts ({} -> {}, {})",
649
compiler.stage, &compiler.host, target, self.backend);
650
0 commit comments