Skip to content

Commit a44e5a9

Browse files
authored
Rollup merge of rust-lang#129459 - onur-ozkan:separate-stage0-bins, r=Kobzol
handle stage0 `cargo` and `rustc` separately This change allows setting either `build.cargo` or `build.rustc` without requiring both to be set simultaneously, which was not possible previously. To try it, set `build.rustc` without setting `build.cargo`, and try to bootstrap on clean build. Blocker for rust-lang#129152
2 parents 0e2523e + 5f2cedc commit a44e5a9

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

src/bootstrap/bootstrap.py

+17-9
Original file line numberDiff line numberDiff line change
@@ -542,9 +542,13 @@ def download_toolchain(self):
542542
bin_root = self.bin_root()
543543

544544
key = self.stage0_compiler.date
545-
if self.rustc().startswith(bin_root) and \
546-
(not os.path.exists(self.rustc()) or
547-
self.program_out_of_date(self.rustc_stamp(), key)):
545+
is_outdated = self.program_out_of_date(self.rustc_stamp(), key)
546+
need_rustc = self.rustc().startswith(bin_root) and (not os.path.exists(self.rustc()) \
547+
or is_outdated)
548+
need_cargo = self.cargo().startswith(bin_root) and (not os.path.exists(self.cargo()) \
549+
or is_outdated)
550+
551+
if need_rustc or need_cargo:
548552
if os.path.exists(bin_root):
549553
# HACK: On Windows, we can't delete rust-analyzer-proc-macro-server while it's
550554
# running. Kill it.
@@ -565,7 +569,6 @@ def download_toolchain(self):
565569
run_powershell([script])
566570
shutil.rmtree(bin_root)
567571

568-
key = self.stage0_compiler.date
569572
cache_dst = (self.get_toml('bootstrap-cache-path', 'build') or
570573
os.path.join(self.build_dir, "cache"))
571574

@@ -577,11 +580,16 @@ def download_toolchain(self):
577580

578581
toolchain_suffix = "{}-{}{}".format(rustc_channel, self.build, tarball_suffix)
579582

580-
tarballs_to_download = [
581-
("rust-std-{}".format(toolchain_suffix), "rust-std-{}".format(self.build)),
582-
("rustc-{}".format(toolchain_suffix), "rustc"),
583-
("cargo-{}".format(toolchain_suffix), "cargo"),
584-
]
583+
tarballs_to_download = []
584+
585+
if need_rustc:
586+
tarballs_to_download.append(
587+
("rust-std-{}".format(toolchain_suffix), "rust-std-{}".format(self.build))
588+
)
589+
tarballs_to_download.append(("rustc-{}".format(toolchain_suffix), "rustc"))
590+
591+
if need_cargo:
592+
tarballs_to_download.append(("cargo-{}".format(toolchain_suffix), "cargo"))
585593

586594
tarballs_download_info = [
587595
DownloadInfo(

0 commit comments

Comments
 (0)