From 4335e305f7f6b67084dab044ee5104e88879ece3 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 19 Oct 2021 14:42:15 +0200 Subject: [PATCH] cpu/mor1kx: Add or1k-linux to gcc_triple. --- litex/soc/cores/cpu/mor1kx/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/cpu/mor1kx/core.py b/litex/soc/cores/cpu/mor1kx/core.py index 67e993856..ceba2fea0 100644 --- a/litex/soc/cores/cpu/mor1kx/core.py +++ b/litex/soc/cores/cpu/mor1kx/core.py @@ -28,7 +28,7 @@ class MOR1KX(CPU): variants = CPU_VARIANTS data_width = 32 endianness = "big" - gcc_triple = "or1k-elf" + gcc_triple = ("or1k-elf", "or1k-linux") clang_triple = "or1k-linux" linker_output_format = "elf32-or1k" nop = "l.nop"