From cf47fa44d8d1fec115e82ef94c760574d13e4aa0 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 26 Aug 2019 11:12:49 +0800 Subject: [PATCH] compiler: armv7-unknown-linux-gnueabihf -> armv7-linux-gnueabihf --- artiq/compiler/targets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/compiler/targets.py b/artiq/compiler/targets.py index 1519a8df9..9643f41e8 100644 --- a/artiq/compiler/targets.py +++ b/artiq/compiler/targets.py @@ -256,7 +256,7 @@ class OR1KTarget(Target): little_endian = False class CortexA9Target(Target): - triple = "armv7-unknown-linux-gnueabihf" + triple = "armv7-linux-gnueabihf" data_layout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64" features = ["dsp", "fp16", "neon", "vfp3"] print_function = "core_log"