diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-03-10 22:16:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-10 22:16:44 +0100 |
| commit | 2a3a8dbdbf381faeb303bd904b6328a352e763af (patch) | |
| tree | cc1f56c8aee539b0c460c32dcd0b6b67afca610e /src | |
| parent | c4b159c4a0d14a94e039e0f5865ead99798b701d (diff) | |
| parent | 89ed992d86a77c27dc0a05488d00567b3f8b7024 (diff) | |
| download | rust-2a3a8dbdbf381faeb303bd904b6328a352e763af.tar.gz rust-2a3a8dbdbf381faeb303bd904b6328a352e763af.zip | |
Rollup merge of #122297 - RalfJung:bootstrap-build, r=onur-ozkan
bootstrap: document what the triples in 'Build' mean Thanks to ``@onur-ozkan`` for pointing this out to me.
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bootstrap/src/lib.rs b/src/bootstrap/src/lib.rs index a252aaac97d..10c13fecbf3 100644 --- a/src/bootstrap/src/lib.rs +++ b/src/bootstrap/src/lib.rs @@ -171,9 +171,11 @@ pub struct Build { doc_tests: DocTests, verbosity: usize, - // Targets for which to build + /// Build triple for the pre-compiled snapshot compiler. build: TargetSelection, + /// Which triples to produce a compiler toolchain for. hosts: Vec<TargetSelection>, + /// Which triples to build libraries (core/alloc/std/test/proc_macro) for. targets: Vec<TargetSelection>, initial_rustc: PathBuf, |
