Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
MPPK-rust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XP-el
MPPK-rust
Commits
99fd145b
Commit
99fd145b
authored
Dec 1, 2019
by
Henrik Tjäder
Browse files
Options
Downloads
Patches
Plain Diff
Note about rust nightly and llvm-tools-preview
parent
d9d6d57e
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/ch1_02_software.md
+2
-0
2 additions, 0 deletions
src/ch1_02_software.md
src/ch2_01_linux_installation.md
+9
-1
9 additions, 1 deletion
src/ch2_01_linux_installation.md
with
11 additions
and
1 deletion
src/ch1_02_software.md
+
2
−
0
View file @
99fd145b
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/ch2_01_linux_installation.md
+
9
−
1
View file @
99fd145b
...
@@ -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
```
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment