Use true as the armv6 linker

Horrible hack until we switch to a Cortex-M0 device crate that works with armv6.
This commit is contained in:
Jonas Schievink 2017-09-22 22:44:31 +02:00
parent df85298c5a
commit a190da3e3f

View file

@ -2,7 +2,7 @@
runner = 'arm-none-eabi-gdb' runner = 'arm-none-eabi-gdb'
rustflags = [ rustflags = [
"-C", "link-arg=-Tlink.x", "-C", "link-arg=-Tlink.x",
"-C", "linker=arm-none-eabi-ld", "-C", "linker=true",
"-Z", "linker-flavor=ld", "-Z", "linker-flavor=ld",
] ]
@ -28,4 +28,4 @@ rustflags = [
"-C", "link-arg=-Tlink.x", "-C", "link-arg=-Tlink.x",
"-C", "linker=arm-none-eabi-ld", "-C", "linker=arm-none-eabi-ld",
"-Z", "linker-flavor=ld", "-Z", "linker-flavor=ld",
] ]