Skip to content

Commit 2ec455e

Browse files
authored
Unrolled build for rust-lang#124242
Rollup merge of rust-lang#124242 - workingjubilee:describe-bootstrap-files-better, r=Mark-Simulacrum bootstrap: Describe build_steps modules One of my preferred ways to understand source code is to start with its API. This implies the code is documented reasonably accurately, even if it is a private API. The description of one of these modules had not been updated since 2015 and so was both terse and confusing, so I rewrote it. Then I noticed many others went unremarked, so I offered some remarks.
2 parents aed2187 + f4e02a1 commit 2ec455e

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

src/bootstrap/src/core/build_steps/clean.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Implementation of `make clean` in rustbuild.
1+
//! `./x.py clean`
22
//!
33
//! Responsible for cleaning out a build directory of all old and stale
44
//! artifacts to prepare for a fresh build. Currently doesn't remove the

src/bootstrap/src/core/build_steps/run.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
//! Build-and-run steps for in-repo tools
2+
//!
3+
//! A bit of a hodge-podge as e.g. if a tool's a test fixture it should be in `build_steps::test`.
4+
//! If it can be reached from `./x.py run` it can go here.
5+
16
use std::path::PathBuf;
27
use std::process::Command;
38

src/bootstrap/src/core/build_steps/setup.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//! First time setup of a dev environment
2+
//!
3+
//! These are build-and-run steps for `./x.py setup`, which allows quickly setting up the directory
4+
//! for modifying, building, and running the compiler and library. Running arbitrary configuration
5+
//! allows setting up things that cannot be simply captured inside the config.toml, in addition to
6+
//! leading people away from manually editing most of the config.toml values.
7+
18
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
29
use crate::t;
310
use crate::utils::change_tracker::CONFIG_CHANGE_HISTORY;
@@ -25,6 +32,8 @@ pub enum Profile {
2532
None,
2633
}
2734

35+
static PROFILE_DIR: &str = "src/bootstrap/defaults";
36+
2837
/// A list of historical hashes of `src/etc/rust_analyzer_settings.json`.
2938
/// New entries should be appended whenever this is updated so we can detect
3039
/// outdated vs. user-modified settings files.
@@ -41,7 +50,7 @@ static RUST_ANALYZER_SETTINGS: &str = include_str!("../../../../etc/rust_analyze
4150

4251
impl Profile {
4352
fn include_path(&self, src_path: &Path) -> PathBuf {
44-
PathBuf::from(format!("{}/src/bootstrap/defaults/config.{}.toml", src_path.display(), self))
53+
PathBuf::from(format!("{}/{PROFILE_DIR}/config.{}.toml", src_path.display(), self))
4554
}
4655

4756
pub fn all() -> impl Iterator<Item = Self> {
@@ -220,7 +229,7 @@ fn setup_config_toml(path: &PathBuf, profile: Profile, config: &Config) {
220229

221230
let latest_change_id = CONFIG_CHANGE_HISTORY.last().unwrap().change_id;
222231
let settings = format!(
223-
"# Includes one of the default files in src/bootstrap/defaults\n\
232+
"# Includes one of the default files in {PROFILE_DIR}\n\
224233
profile = \"{profile}\"\n\
225234
change-id = {latest_change_id}\n"
226235
);

src/bootstrap/src/core/build_steps/suggest.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Attempt to magically identify good tests to run
2+
13
#![cfg_attr(feature = "build-metrics", allow(unused))]
24

35
use clap::Parser;

src/bootstrap/src/core/build_steps/test.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! Implementation of the test-related targets of the build system.
1+
//! Build-and-run steps for `./x.py test` test fixtures
22
//!
3-
//! This file implements the various regression test suites that we execute on
4-
//! our CI.
3+
//! `./x.py test` (aka [`Kind::Test`]) is currently allowed to reach build steps in other modules.
4+
//! However, this contains ~all test parts we expect people to be able to build and run locally.
55
66
use std::env;
77
use std::ffi::OsStr;

src/bootstrap/src/core/build_steps/toolstate.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
//! [Toolstate] checks to keep tools building
2+
//!
3+
//! Reachable via `./x.py test` but mostly relevant for CI, since it isn't run locally by default.
4+
//!
5+
//! [Toolstate]: https://forge.rust-lang.org/infra/toolstate.html
6+
17
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
28
use crate::utils::helpers::t;
39
use serde_derive::{Deserialize, Serialize};

0 commit comments

Comments
 (0)