Skip to content

Commit f3872aa

Browse files
chetankokilchetankokil
chetankokil
authored and
chetankokil
committed
renamed stage0 to bootstrap-sysroot
1 parent b5cd01a commit f3872aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bootstrap/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def bin_root(self):
597597
>>> rb.bin_root() == os.path.join("build", "devel", "stage0")
598598
True
599599
"""
600-
subdir = "stage0"
600+
subdir = "bootstrap-sysroot"
601601
return os.path.join(self.build_dir, self.build, subdir)
602602

603603
def get_toml(self, key, section=None):

src/bootstrap/compile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ impl Step for Sysroot {
11061106
let compiler = self.compiler;
11071107
let host_dir = builder.out.join(&compiler.host.triple);
11081108
let sysroot = if compiler.stage == 0 {
1109-
host_dir.join("stage0-sysroot")
1109+
host_dir.join("bootstrap-sysroot")
11101110
} else {
11111111
host_dir.join(format!("stage{}", compiler.stage))
11121112
};

0 commit comments

Comments
 (0)