Skip to content

Commit

Permalink
renamed stage0 to bootstrap-sysroot
Browse files Browse the repository at this point in the history
  • Loading branch information
chetankokil authored and chetankokil committed Oct 20, 2022
1 parent b5cd01a commit f3872aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def bin_root(self):
>>> rb.bin_root() == os.path.join("build", "devel", "stage0")
True
"""
subdir = "stage0"
subdir = "bootstrap-sysroot"
return os.path.join(self.build_dir, self.build, subdir)

def get_toml(self, key, section=None):
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ impl Step for Sysroot {
let compiler = self.compiler;
let host_dir = builder.out.join(&compiler.host.triple);
let sysroot = if compiler.stage == 0 {
host_dir.join("stage0-sysroot")
host_dir.join("bootstrap-sysroot")
} else {
host_dir.join(format!("stage{}", compiler.stage))
};
Expand Down

0 comments on commit f3872aa

Please sign in to comment.