Skip to content

Commit 87a4c32

Browse files
committed
Fix target triple in bootstrap
1 parent 80eb5a8 commit 87a4c32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/bootstrap/src/core/download.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ impl Config {
519519
extra_components: &[&str],
520520
download_component: fn(&Config, String, &str, &str),
521521
) {
522-
let host = self.build;
522+
let host = self.build.triple;
523523
let bin_root = self.out.join(host).join(sysroot);
524524
let rustc_stamp = bin_root.join(".rustc-stamp");
525525

0 commit comments

Comments
 (0)