Skip to content

Commit 7662626

Browse files
authored
Fix cargo-binutils link
1 parent d149b65 commit 7662626

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/doc/unstable-book/src/compiler-flags/source-based-code-coverage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ LLVM's supplies two tools—`llvm-profdata` and `llvm-cov`—that process covera
118118
* If you are building the Rust compiler from source, you can optionally use the bundled LLVM tools, built from source. Those tool binaries can typically be found in your build platform directory at something like: `rust/build/x86_64-unknown-linux-gnu/llvm/bin/llvm-*`.
119119
* You can install compatible versions of these tools via `rustup`.
120120

121-
The `rustup` option is guaranteed to install a compatible version of the LLVM tools, but they can be hard to find. We recommend [`cargo-bintools`], which installs Rust-specific wrappers around these and other LLVM tools, so you can invoke them via `cargo` commands!
121+
The `rustup` option is guaranteed to install a compatible version of the LLVM tools, but they can be hard to find. We recommend [`cargo-binutils`], which installs Rust-specific wrappers around these and other LLVM tools, so you can invoke them via `cargo` commands!
122122

123123
```shell
124124
$ rustup component add llvm-tools-preview
@@ -320,8 +320,8 @@ Rust's implementation and workflow for source-based code coverage is based on th
320320
[rustc-dev-guide-how-to-build-and-run]: https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html
321321
[`rustfilt`]: https://crates.io/crates/rustfilt
322322
[`json5format`]: https://crates.io/crates/json5format
323-
[`cargo-bintools`]: https://crates.io/crates/cargo-bintools
323+
[`cargo-binutils`]: https://crates.io/crates/cargo-binutils
324324
[`llvm-profdata merge`]: https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-merge
325325
[`llvm-cov report`]: https://llvm.org/docs/CommandGuide/llvm-cov.html#llvm-cov-report
326326
[`llvm-cov show`]: https://llvm.org/docs/CommandGuide/llvm-cov.html#llvm-cov-show
327-
[source-based code coverage in Clang]: https://clang.llvm.org/docs/SourceBasedCodeCoverage.html
327+
[source-based code coverage in Clang]: https://clang.llvm.org/docs/SourceBasedCodeCoverage.html

0 commit comments

Comments
 (0)