We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a9afa0 commit 67a5f55Copy full SHA for 67a5f55
src/bootstrap/src/utils/tarball.rs
@@ -327,7 +327,6 @@ impl<'a> Tarball<'a> {
327
cmd.arg("--compression-formats").arg(formats.join(","));
328
}
329
cmd.args(&["--compression-profile", &self.builder.config.dist_compression_profile]);
330
- dbg!(&cmd);
331
self.builder.run(&mut cmd);
332
333
// Ensure there are no symbolic links in the tarball. In particular,
src/tools/build-manifest/src/versions.rs
@@ -108,6 +108,8 @@ impl PkgType {
108
ReproducibleArtifacts => HOSTS,
109
RustcDocs => HOSTS,
110
Cargo => HOSTS,
111
+ // FIXME should this use the exact list of targets for which we build cg_clif?
112
+ RustcCodegenCranelift => HOSTS,
113
RustMingw => MINGW,
114
RustStd => TARGETS,
115
HtmlDocs => HOSTS,
0 commit comments