Skip to content

Commit 5fc8108

Browse files
committed
document bootstrap tool module
Signed-off-by: onur-ozkan <[email protected]>
1 parent 44cc009 commit 5fc8108

File tree

1 file changed

+11
-0
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+11
-0
lines changed

src/bootstrap/src/core/build_steps/tool.rs

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//! This module handles building and managing various tools in bootstrap
2+
//! build system.
3+
//!
4+
//! **What It Does**
5+
//! - Defines how tools are built, configured and installed.
6+
//! - Manages tool dependencies and build steps.
7+
//! - Copies built tool binaries to the correct locations.
8+
//!
9+
//! Each tool **MUST** utilize `ToolBuild` inside their `Step` logic and
10+
//! they should never prepare `cargo` invocations manually.
11+
112
use std::path::PathBuf;
213
use std::{env, fs};
314

0 commit comments

Comments
 (0)