mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
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:
parent
df85298c5a
commit
a190da3e3f
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue