set default runner to arm-none-eabi-gdb

with this `xargo run` will build the program *and* immediately start a GDB
session.
This commit is contained in:
Jorge Aparicio
2017-05-26 15:10:44 -05:00
parent 82e36ffe13
commit c6fafaedc2
3 changed files with 15 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
[target.thumbv6m-none-eabi]
runner = 'arm-none-eabi-gdb'
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "linker=arm-none-eabi-ld",
@@ -6,6 +7,7 @@ rustflags = [
]
[target.thumbv7m-none-eabi]
runner = 'arm-none-eabi-gdb'
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "linker=arm-none-eabi-ld",
@@ -13,6 +15,7 @@ rustflags = [
]
[target.thumbv7em-none-eabi]
runner = 'arm-none-eabi-gdb'
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "linker=arm-none-eabi-ld",
@@ -20,6 +23,7 @@ rustflags = [
]
[target.thumbv7em-none-eabihf]
runner = 'arm-none-eabi-gdb'
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "linker=arm-none-eabi-ld",