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.
pull/1745/head
Sebastien Bourdeauducq 2021-08-12 11:54:55 +08:00 committed by occheung
parent 43d120359d
commit 6629a49e86
1 changed files with 4 additions and 4 deletions

View File

@ -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"