cpu_interface: default to gcc for all cpus unless told otherwise (mor1kx default...
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 29 Apr 2019 08:00:04 +0000 (10:00 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 29 Apr 2019 08:00:04 +0000 (10:00 +0200)
litex/soc/integration/cpu_interface.py

index d8020a8923b087bb577409c470b00f971a0eed80..bafe157af35087c9596e62cc9fa8001ee1934385 100644 (file)
@@ -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