We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efbaa41 commit ba22fbeCopy full SHA for ba22fbe
compiler/rustc_interface/src/passes.rs
@@ -551,6 +551,10 @@ fn write_out_deps(
551
.map(|fmap| escape_dep_filename(&fmap.unmapped_path.as_ref().unwrap_or(&fmap.name)))
552
.collect();
553
554
+ if let Some(ref backend) = sess.opts.debugging_opts.codegen_backend {
555
+ files.push(backend.to_string());
556
+ }
557
+
558
if sess.binary_dep_depinfo() {
559
boxed_resolver.borrow().borrow_mut().access(|resolver| {
560
for cnum in resolver.cstore().crates_untracked() {
0 commit comments