diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2024-06-21 16:04:38 +1000 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2024-06-23 11:31:21 +1000 |
| commit | 16cf2682eedfbda32d2475026a474ecff03dc7b0 (patch) | |
| tree | 38d7d5a47c470a4fc46be5275636e77ee885f503 /src/bootstrap | |
| parent | 3cb521a4344f0b556b81c55eec8facddeb1ead83 (diff) | |
| download | rust-16cf2682eedfbda32d2475026a474ecff03dc7b0.tar.gz rust-16cf2682eedfbda32d2475026a474ecff03dc7b0.zip | |
Try to clarify the confusingly-named `RustDev` and `RustcDev` steps
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/src/core/build_steps/dist.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/dist.rs b/src/bootstrap/src/core/build_steps/dist.rs index 54136d2aebd..4fb64595504 100644 --- a/src/bootstrap/src/core/build_steps/dist.rs +++ b/src/bootstrap/src/core/build_steps/dist.rs @@ -665,6 +665,10 @@ impl Step for Std { } } +/// Tarball containing the compiler that gets downloaded and used by +/// `rust.download-rustc`. +/// +/// (Don't confuse this with [`RustDev`], without the `c`!) #[derive(Debug, PartialOrd, Ord, Clone, Hash, PartialEq, Eq)] pub struct RustcDev { pub compiler: Compiler, @@ -2225,6 +2229,11 @@ impl Step for LlvmBitcodeLinker { /// Tarball intended for internal consumption to ease rustc/std development. /// /// Should not be considered stable by end users. +/// +/// In practice, this is the tarball that gets downloaded and used by +/// `llvm.download-ci-llvm`. +/// +/// (Don't confuse this with [`RustcDev`], with a `c`!) #[derive(Clone, Debug, Eq, Hash, PartialEq)] pub struct RustDev { pub target: TargetSelection, |
