Skip to content

Commit 16cf268

Browse files
committed
Try to clarify the confusingly-named RustDev and RustcDev steps
1 parent 3cb521a commit 16cf268

File tree

1 file changed

+9
-0
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+9
-0
lines changed

src/bootstrap/src/core/build_steps/dist.rs

+9
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,10 @@ impl Step for Std {
665665
}
666666
}
667667

668+
/// Tarball containing the compiler that gets downloaded and used by
669+
/// `rust.download-rustc`.
670+
///
671+
/// (Don't confuse this with [`RustDev`], without the `c`!)
668672
#[derive(Debug, PartialOrd, Ord, Clone, Hash, PartialEq, Eq)]
669673
pub struct RustcDev {
670674
pub compiler: Compiler,
@@ -2225,6 +2229,11 @@ impl Step for LlvmBitcodeLinker {
22252229
/// Tarball intended for internal consumption to ease rustc/std development.
22262230
///
22272231
/// Should not be considered stable by end users.
2232+
///
2233+
/// In practice, this is the tarball that gets downloaded and used by
2234+
/// `llvm.download-ci-llvm`.
2235+
///
2236+
/// (Don't confuse this with [`RustcDev`], with a `c`!)
22282237
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
22292238
pub struct RustDev {
22302239
pub target: TargetSelection,

0 commit comments

Comments
 (0)