diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2017-09-22 22:44:31 +0200 |
|---|---|---|
| committer | Jonas Schievink <jonasschievink@gmail.com> | 2017-09-22 22:44:31 +0200 |
| commit | a190da3e3ff63a25a33ac30fc99421ab0decce57 (patch) | |
| tree | 4ea3dce15930f221733452e6c32293bc5f64f96a | |
| parent | df85298c5a42a764805c2a24a64f2d08049404e9 (diff) | |
Use `true` as the armv6 linker
Horrible hack until we switch to a Cortex-M0 device crate that works with armv6.
| -rw-r--r-- | .cargo/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.cargo/config b/.cargo/config index 4db4740..36061ee 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 +] |
