small fixes

This commit is contained in:
Michael Droogleever
2018-10-13 22:37:28 +02:00
parent 28e7da3ad1
commit 1edb3b94e3
2 changed files with 1 additions and 17 deletions

View File

@@ -136,7 +136,7 @@ $ rustup target add thumbv7em-none-eabihf
## Build problems ## Build problems
### `error: language item required, but not found: \`eh_personality\`` ### `error: language item required, but not found: 'eh_personality'`
#### Cause #### Cause

View File

@@ -209,22 +209,6 @@ For more information, you can read [the documentation here][cargoconfig].
### `.cargo/config` ### `.cargo/config`
<!-- ``` toml
# Configure builds for our target
[target.thumbv6m-none-eabi]
# Execute binary using gdb
runner = "arm-none-eabi-gdb"
# Tweak to the linking process required by the cortex-m-rt crate
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "link-arg=-nostartfiles",
]
# Automatically select this target when running cargo for this project
[build]
target = "thumbv6m-none-eabi"
``` -->
``` toml ``` toml
{{#include ../../.cargo/config}} {{#include ../../.cargo/config}}
``` ```