From 95807234d9b49b1609c6da714906de778a2bd3e9 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 28 Jun 2020 17:32:28 +0800 Subject: [PATCH] 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. --- artiq/compiler/targets.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/artiq/compiler/targets.py b/artiq/compiler/targets.py index e44024177..9b985c32e 100644 --- a/artiq/compiler/targets.py +++ b/artiq/compiler/targets.py @@ -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"