Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'llvm-tools-preview' component is now named 'llvm-tools' #372

Merged
merged 1 commit into from
May 17, 2024
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
Loading