Skip to content

Commit

Permalink
Fix target triple in bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Kobzol committed Aug 13, 2024
1 parent 80eb5a8 commit 87a4c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/src/core/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ impl Config {
extra_components: &[&str],
download_component: fn(&Config, String, &str, &str),
) {
let host = self.build;
let host = self.build.triple;
let bin_root = self.out.join(host).join(sysroot);
let rustc_stamp = bin_root.join(".rustc-stamp");

Expand Down

0 comments on commit 87a4c32

Please sign in to comment.