Skip to content

Commit

Permalink
document bootstrap tool module
Browse files Browse the repository at this point in the history
Signed-off-by: onur-ozkan <[email protected]>
  • Loading branch information
onur-ozkan committed Feb 3, 2025
1 parent 44cc009 commit 5fc8108
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/bootstrap/src/core/build_steps/tool.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
//! This module handles building and managing various tools in bootstrap
//! build system.
//!
//! **What It Does**
//! - Defines how tools are built, configured and installed.
//! - Manages tool dependencies and build steps.
//! - Copies built tool binaries to the correct locations.
//!
//! Each tool **MUST** utilize `ToolBuild` inside their `Step` logic and
//! they should never prepare `cargo` invocations manually.
use std::path::PathBuf;
use std::{env, fs};

Expand Down

0 comments on commit 5fc8108

Please sign in to comment.