Skip to content
Snippets Groups Projects
Commit 99fd145b authored by Henrik Tjäder's avatar Henrik Tjäder
Browse files

Note about rust nightly and llvm-tools-preview

parent d9d6d57e
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,8 @@ Quoting its [documentation](http://openocd.org/doc-release/pdf/openocd.pdf): ...@@ -44,6 +44,8 @@ Quoting its [documentation](http://openocd.org/doc-release/pdf/openocd.pdf):
"The Open On-Chip Debugger (OpenOCD) aims to provide debugging, in-system programming and boundary-scan testing for embedded target devices." "The Open On-Chip Debugger (OpenOCD) aims to provide debugging, in-system programming and boundary-scan testing for embedded target devices."
Since newer hardware is released and firmwares for hardware gets updated, it may be required to run a development version of OpenOCD to keep up.
#### ST-link #### ST-link
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
In general use your package manager for whatever distribution you are using. In general use your package manager for whatever distribution you are using.
Some Long-Term-Support distributions may have very old packages, but it should work, Some Long-Term-Support distributions may have very old packages, but it should work,
in case of troubles see if the package is available in the `backports` repositories. in case of troubles see if a newer package is available in the `backports` repositories.
## GDB / Binutils ## GDB / Binutils
...@@ -53,5 +53,13 @@ rustup target add thumbv7em-none-eabihf ...@@ -53,5 +53,13 @@ rustup target add thumbv7em-none-eabihf
## Cargo tools ## Cargo tools
``` ```
cargo install cargo-binutils cargo install cargo-binutils
rustup component add llvm-tools-preview
```
### If running Rust beta/nightly
Use instead
```
rustup component add llvm-tools rustup component add llvm-tools
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment