diff options
author | 2017-09-22 22:44:31 +0200 | |
---|---|---|
committer | 2017-09-22 22:44:31 +0200 | |
commit | a190da3e3ff63a25a33ac30fc99421ab0decce57 (patch) | |
tree | 4ea3dce15930f221733452e6c32293bc5f64f96a | |
parent | df85298c5a42a764805c2a24a64f2d08049404e9 (diff) | |
download | rtic-a190da3e3ff63a25a33ac30fc99421ab0decce57.tar.gz rtic-a190da3e3ff63a25a33ac30fc99421ab0decce57.tar.zst rtic-a190da3e3ff63a25a33ac30fc99421ab0decce57.zip |
Use `true` as the armv6 linker
Horrible hack until we switch to a Cortex-M0 device crate that works with armv6.
Diffstat (limited to '')
-rw-r--r-- | .cargo/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.cargo/config b/.cargo/config index 4db47406..36061ee4 100644 --- a/.cargo/config +++ b/.cargo/config @@ -2,7 +2,7 @@ runner = 'arm-none-eabi-gdb' rustflags = [ "-C", "link-arg=-Tlink.x", - "-C", "linker=arm-none-eabi-ld", + "-C", "linker=true", "-Z", "linker-flavor=ld", ] @@ -28,4 +28,4 @@ rustflags = [ "-C", "link-arg=-Tlink.x", "-C", "linker=arm-none-eabi-ld", "-Z", "linker-flavor=ld", -]
\ No newline at end of file +] |