Skip to content

Commit f29f073

Browse files
committed
add support for ./x check src/tools/linkchecker
1 parent d242a8b commit f29f073

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/bootstrap/src/core/build_steps/check.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,3 +556,9 @@ tool_check_step!(Compiletest {
556556
allow_features: COMPILETEST_ALLOW_FEATURES,
557557
default: false,
558558
});
559+
560+
tool_check_step!(Linkchecker {
561+
path: "src/tools/linkchecker",
562+
mode: |_builder| Mode::ToolBootstrap,
563+
default: false
564+
});

src/bootstrap/src/core/builder/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,7 @@ impl<'a> Builder<'a> {
10331033
check::Compiletest,
10341034
check::FeaturesStatusDump,
10351035
check::CoverageDump,
1036+
check::Linkchecker,
10361037
// This has special staging logic, it may run on stage 1 while others run on stage 0.
10371038
// It takes quite some time to build stage 1, so put this at the end.
10381039
//

0 commit comments

Comments
 (0)