diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2024-04-21 13:32:59 -0700 |
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2024-04-21 13:59:30 -0700 |
| commit | bc37f9e2040235a4e6b8bed6c6db4f064fea15cc (patch) | |
| tree | 3b8afbf108f27e7d7bd7e960649fabdc9d1e3d0e | |
| parent | 8c40d0efa7881d49895398c8536c212c1e9e93cf (diff) | |
| download | rust-bc37f9e2040235a4e6b8bed6c6db4f064fea15cc.tar.gz rust-bc37f9e2040235a4e6b8bed6c6db4f064fea15cc.zip | |
bootstrap: Describe build_steps::setup
| -rw-r--r-- | src/bootstrap/src/core/build_steps/setup.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/setup.rs b/src/bootstrap/src/core/build_steps/setup.rs index 7bc68b5aec1..6b2b7e5dcac 100644 --- a/src/bootstrap/src/core/build_steps/setup.rs +++ b/src/bootstrap/src/core/build_steps/setup.rs @@ -1,3 +1,9 @@ +//! First time setup of a dev environment +//! +//! These are build-and-run steps for `./x.py setup`, which allows quickly setting up the directory +//! for modifying, building, and running the compiler and library. The main convenience is to allow +//! not having to painstakingly set every single option in config.toml. + use crate::core::builder::{Builder, RunConfig, ShouldRun, Step}; use crate::t; use crate::utils::change_tracker::CONFIG_CHANGE_HISTORY; |
