We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d242a8b commit f29f073Copy full SHA for f29f073
src/bootstrap/src/core/build_steps/check.rs
@@ -556,3 +556,9 @@ tool_check_step!(Compiletest {
556
allow_features: COMPILETEST_ALLOW_FEATURES,
557
default: false,
558
});
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
@@ -1033,6 +1033,7 @@ impl<'a> Builder<'a> {
1033
check::Compiletest,
1034
check::FeaturesStatusDump,
1035
check::CoverageDump,
1036
+ check::Linkchecker,
1037
// This has special staging logic, it may run on stage 1 while others run on stage 0.
1038
// It takes quite some time to build stage 1, so put this at the end.
1039
//
0 commit comments