Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/intro/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ rustup target add thumbv8m.main-none-eabihf
``` text
cargo install cargo-binutils

rustup component add llvm-tools-preview
rustup component add llvm-tools
```
WINDOWS: prerequisite C++ Build Tools for Visual Studio 2019 is installed. https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools&rel=16
### `cargo-generate`
Expand Down
2 changes: 1 addition & 1 deletion src/intro/tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ binaries.

The advantage of using these tools over GNU binutils is that (a) installing the
LLVM tools is the same one-command installation (`rustup component add
llvm-tools-preview`) regardless of your OS and (b) tools like `objdump` support
llvm-tools`) regardless of your OS and (b) tools like `objdump` support
all the architectures that `rustc` supports -- from ARM to x86_64 -- because
they both share the same LLVM backend.

Expand Down