compiler: use binutils for ARM

This is mostly due to Windoze, where installing anything is a PITA and the LLVM tools won't be available soon.
pull/1479/head
Sebastien Bourdeauducq 2020-06-28 17:32:28 +08:00
parent 906256cc02
commit 95807234d9
1 changed files with 5 additions and 0 deletions

View File

@ -275,3 +275,8 @@ class CortexA9Target(Target):
print_function = "core_log"
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"