[coreboot-gerrit] New patch to review for coreboot: 578c7b9 Makefile.inc: Make clang once again a valid toolchain

Edward O'Callaghan (eocallaghan@alterapraxis.com) gerrit at coreboot.org
Fri May 9 20:40:34 CEST 2014


Edward O'Callaghan (eocallaghan at alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5709

-gerrit

commit 578c7b977764f3e10e65ef2774e48a5415e46517
Author: Edward O'Callaghan <eocallaghan at alterapraxis.com>
Date:   Sat May 10 04:39:06 2014 +1000

    Makefile.inc: Make clang once again a valid toolchain
    
    'prove' that clang is supported (to some extent).
    
    Change-Id: I181f4910ba64ab9746e7ac94aa79da23cdd41dad
    Signed-off-by: Edward O'Callaghan <eocallaghan at alterapraxis.com>
---
 Makefile.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Makefile.inc b/Makefile.inc
index bd1a58a..3205a10 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -29,6 +29,9 @@ ifneq ($(NOCOMPILE),1)
 # only run if we're doing a build (not for tests, kconfig, ...)
 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
 _toolchain=$(shell $(CC_x86_32) -v 2>&1 |grep -q "gcc version .*coreboot toolchain" && echo coreboot)
+ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y)
+_toolchain=coreboot
+endif
 ifneq ($(_toolchain),coreboot)
 $(error Please use the coreboot toolchain (or prove that your toolchain works))
 endif



More information about the coreboot-gerrit mailing list