From 6629a49e86bb32264a14163a2b6349ded38e710f Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 12 Aug 2021 11:54:55 +0800 Subject: [PATCH] compiler: use LLVM binutils/linker for Arm as well Previously we kept GNU Binutils because they are less of a pain to support on Windoze - the source of so many problems - but with RISC-V we need to update LLVM anyway. --- artiq/compiler/targets.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/artiq/compiler/targets.py b/artiq/compiler/targets.py index 745dede81..b6e33e8ca 100644 --- a/artiq/compiler/targets.py +++ b/artiq/compiler/targets.py @@ -276,7 +276,7 @@ class CortexA9Target(Target): little_endian = True now_pinning = False - tool_ld = "armv7-unknown-linux-gnueabihf-ld" - tool_strip = "armv7-unknown-linux-gnueabihf-strip" - tool_addr2line = "armv7-unknown-linux-gnueabihf-addr2line" - tool_cxxfilt = "armv7-unknown-linux-gnueabihf-c++filt" + tool_ld = "ld.lld" + tool_strip = "llvm-strip" + tool_addr2line = "llvm-addr2line" + tool_cxxfilt = "llvm-cxxfilt"