From a190da3e3ff63a25a33ac30fc99421ab0decce57 Mon Sep 17 00:00:00 2001
From: Jonas Schievink <jonasschievink@gmail.com>
Date: Fri, 22 Sep 2017 22:44:31 +0200
Subject: [PATCH] Use `true` as the armv6 linker

Horrible hack until we switch to a Cortex-M0 device crate that works with armv6.
---
 .cargo/config | 4 ++--
 1 file 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
+]
-- 
GitLab