]> git.lizzy.rs Git - rust.git/blobdiff - src/bootstrap/dist.rs
Rollup merge of #102612 - JhonnyBillM:migrate-codegen-ssa-to-diagnostics-structs...
[rust.git] / src / bootstrap / dist.rs
index 5a7a193897bfad3105da46cc20dfee5769115f7d..c636d4c2b47f0613ba0b9eb5697839622b1cdff6 100644 (file)
@@ -2159,6 +2159,10 @@ fn run(self, builder: &Builder<'_>) -> Self::Output {
             tarball.add_file(path, ".", 0o644);
             added_anything = true;
         }
+        if let Some(path) = builder.config.llvm_bolt_profile_use.as_ref() {
+            tarball.add_file(path, ".", 0o644);
+            added_anything = true;
+        }
         if added_anything { Some(tarball.generate()) } else { None }
     }
 }