diff options
| author | asquared31415 <34665709+asquared31415@users.noreply.github.com> | 2022-05-22 13:53:31 -0400 |
|---|---|---|
| committer | jyn <github@jyn.dev> | 2023-12-16 15:24:59 -0500 |
| commit | 9341325c73a596292291840c345be09fdb4af083 (patch) | |
| tree | 4f0090448515331748054c60b329a5cb9f4757b3 /src/bootstrap/bootstrap.py | |
| parent | 2979a2c72dad76130594cd9e4d006db280f0ba27 (diff) | |
| download | rust-9341325c73a596292291840c345be09fdb4af083.tar.gz rust-9341325c73a596292291840c345be09fdb4af083.zip | |
make x.py clippy download and use beta clippy
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 2328dd822af..fea194a80ef 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -616,22 +616,6 @@ class RustBuild(object): with output(self.rustc_stamp()) as rust_stamp: rust_stamp.write(key) - def _download_component_helper( - self, filename, pattern, tarball_suffix, rustc_cache, - ): - key = self.stage0_compiler.date - - tarball = os.path.join(rustc_cache, filename) - if not os.path.exists(tarball): - get( - self.download_url, - "dist/{}/{}".format(key, filename), - tarball, - self.checksums_sha256, - verbose=self.verbose, - ) - unpack(tarball, tarball_suffix, self.bin_root(), match=pattern, verbose=self.verbose) - def should_fix_bins_and_dylibs(self): """Whether or not `fix_bin_or_dylib` needs to be run; can only be True on NixOS or if config.toml has `build.patch-binaries-for-nix` set. |
