Skip to content

Commit 67a5f55

Browse files
committed
Fix build error
1 parent 1a9afa0 commit 67a5f55

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bootstrap/src/utils/tarball.rs

-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ impl<'a> Tarball<'a> {
327327
cmd.arg("--compression-formats").arg(formats.join(","));
328328
}
329329
cmd.args(&["--compression-profile", &self.builder.config.dist_compression_profile]);
330-
dbg!(&cmd);
331330
self.builder.run(&mut cmd);
332331

333332
// Ensure there are no symbolic links in the tarball. In particular,

src/tools/build-manifest/src/versions.rs

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ impl PkgType {
108108
ReproducibleArtifacts => HOSTS,
109109
RustcDocs => HOSTS,
110110
Cargo => HOSTS,
111+
// FIXME should this use the exact list of targets for which we build cg_clif?
112+
RustcCodegenCranelift => HOSTS,
111113
RustMingw => MINGW,
112114
RustStd => TARGETS,
113115
HtmlDocs => HOSTS,

0 commit comments

Comments
 (0)