aboutsummaryrefslogtreecommitdiff
path: root/.cargo
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2017-07-20 23:03:45 -0500
committerJorge Aparicio <jorge@japaric.io>2017-07-20 23:03:45 -0500
commit0788a15a39599dece96ba5d2f8cb15c7e397939a (patch)
tree26cc2687685b51d66275305699b0f06d82579179 /.cargo
parentc7b9507a57f2ba28c18b15dd2719a1c56f74a302 (diff)
update CI
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/config24
1 files changed, 24 insertions, 0 deletions
diff --git a/.cargo/config b/.cargo/config
index 1642997..4db4740 100644
--- a/.cargo/config
+++ b/.cargo/config
@@ -1,3 +1,11 @@
+[target.thumbv6m-none-eabi]
+runner = 'arm-none-eabi-gdb'
+rustflags = [
+ "-C", "link-arg=-Tlink.x",
+ "-C", "linker=arm-none-eabi-ld",
+ "-Z", "linker-flavor=ld",
+]
+
[target.thumbv7m-none-eabi]
runner = 'arm-none-eabi-gdb'
rustflags = [
@@ -5,3 +13,19 @@ rustflags = [
"-C", "linker=arm-none-eabi-ld",
"-Z", "linker-flavor=ld",
]
+
+[target.thumbv7em-none-eabi]
+runner = 'arm-none-eabi-gdb'
+rustflags = [
+ "-C", "link-arg=-Tlink.x",
+ "-C", "linker=arm-none-eabi-ld",
+ "-Z", "linker-flavor=ld",
+]
+
+[target.thumbv7em-none-eabihf]
+runner = 'arm-none-eabi-gdb'
+rustflags = [
+ "-C", "link-arg=-Tlink.x",
+ "-C", "linker=arm-none-eabi-ld",
+ "-Z", "linker-flavor=ld",
+] \ No newline at end of file