Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10399
-gerrit
commit 26d82047ae4def2ee9a798bbdfd9e0c32388766d Author: Patrick Georgi pgeorgi@chromium.org Date: Tue Jun 2 12:13:51 2015 +0200
build system: slightly fix up clang support
There's a larger rework waiting for some care, but until that's stabilized and in, have the clang support we have do the right thing.
Change-Id: I7fc54eebf0ccfb70bbaaafa8a3180d81a14a7696 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile index 9d174e0..64632c1 100644 --- a/Makefile +++ b/Makefile @@ -144,8 +144,8 @@ endif CFLAGS_arm = -no-integrated-as -Qunused-arguments -target arm-eabi -ccc-gcc-name $(CC_arm) CC_arm:=clang
-CFLAGS_aarch64 = -no-integrated-as -Qunused-arguments -target aarch64-eabi -ccc-gcc-name $(CC_aarch64) -CC_aarch64:=clang +CFLAGS_arm64 = -no-integrated-as -Qunused-arguments -target aarch64-eabi -ccc-gcc-name $(CC_arm64) +CC_arm64 :=clang endif
include toolchain.inc