Try to clarify the confusingly-named RustDev
and RustcDev
steps
This commit is contained in:
parent
3cb521a434
commit
16cf2682ee
1 changed files with 9 additions and 0 deletions
|
@ -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)]
|
#[derive(Debug, PartialOrd, Ord, Clone, Hash, PartialEq, Eq)]
|
||||||
pub struct RustcDev {
|
pub struct RustcDev {
|
||||||
pub compiler: Compiler,
|
pub compiler: Compiler,
|
||||||
|
@ -2225,6 +2229,11 @@ impl Step for LlvmBitcodeLinker {
|
||||||
/// Tarball intended for internal consumption to ease rustc/std development.
|
/// Tarball intended for internal consumption to ease rustc/std development.
|
||||||
///
|
///
|
||||||
/// Should not be considered stable by end users.
|
/// 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)]
|
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
|
||||||
pub struct RustDev {
|
pub struct RustDev {
|
||||||
pub target: TargetSelection,
|
pub target: TargetSelection,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue