about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2024-04-24 16:56:41 -0700
committerJubilee Young <workingjubilee@gmail.com>2024-04-24 16:57:13 -0700
commitf4e02a193e39958df1cee6abeefc62e50354fdea (patch)
tree8a89f409491e2a747ff19e0f38fa8836f1707558 /src
parent32aadc516bb2dad9913d2600da5dd1d4478e552f (diff)
downloadrust-f4e02a193e39958df1cee6abeefc62e50354fdea.tar.gz
rust-f4e02a193e39958df1cee6abeefc62e50354fdea.zip
bootstrap: reinterpret the main advantage of x.py setup
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/src/core/build_steps/setup.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bootstrap/src/core/build_steps/setup.rs b/src/bootstrap/src/core/build_steps/setup.rs
index a01d20e8c21..62009414580 100644
--- a/src/bootstrap/src/core/build_steps/setup.rs
+++ b/src/bootstrap/src/core/build_steps/setup.rs
@@ -1,8 +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.
+//! for modifying, building, and running the compiler and library. Running arbitrary configuration
+//! allows setting up things that cannot be simply captured inside the config.toml, in addition to
+//! leading people away from manually editing most of the config.toml values.
 
 use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
 use crate::t;