From: Florent Kermarrec Date: Mon, 29 Apr 2019 08:00:04 +0000 (+0200) Subject: cpu_interface: default to gcc for all cpus unless told otherwise (mor1kx default... X-Git-Tag: 24jan2021_ls180~1260 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b40d1b73c4e24f6600f56acfa53775e4a53ce31d;p=litex.git cpu_interface: default to gcc for all cpus unless told otherwise (mor1kx default was clang) --- diff --git a/litex/soc/integration/cpu_interface.py b/litex/soc/integration/cpu_interface.py index d8020a89..bafe157a 100644 --- a/litex/soc/integration/cpu_interface.py +++ b/litex/soc/integration/cpu_interface.py @@ -20,9 +20,9 @@ def get_cpu_mak(cpu): else: clang = False else: - # Default to clang unless told otherwise + # Default to gcc unless told otherwise if clang is None: - clang = True + clang = False assert isinstance(clang, bool) if clang: triple = cpu.clang_triple