From 3b8ca3455fbdeb2bec866983eb1125263e458dde Mon Sep 17 00:00:00 2001 From: Simone Margaritelli Date: Fri, 2 Jul 2021 15:04:25 +0200 Subject: [PATCH] new: added linker for armv7-unknown-linux-gnueabihf to cargo config --- .cargo/config | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index cdae9a80..757fd081 100644 --- a/.cargo/config +++ b/.cargo/config @@ -2,4 +2,7 @@ xtask = "run --package xtask --" [target.armv7-unknown-linux-gnueabi] -linker = "arm-linux-gnueabi-gcc" \ No newline at end of file +linker = "arm-linux-gnueabi-gcc" + +[target.armv7-unknown-linux-gnueabihf] +linker = "arm-linux-gnueabihf-gcc" \ No newline at end of file