Edward O'Callaghan (eocallaghan@alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8206
-gerrit
commit dcf9795b59397acf6bc651061b9f9f3629f69834 Author: Edward O'Callaghan eocallaghan@alterapraxis.com Date: Tue Jan 13 22:26:42 2015 +1100
Makefile: clang - ramp up some more warnings
Back out '-Wno-tautological-compare'.
Change-Id: Id43631fb1520ab844a772277c5b1dd5384c9f145 Signed-off-by: Edward O'Callaghan eocallaghan@alterapraxis.com --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile index eda36e7..e46cdca 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y) # this means the triple is i386-linux-elf instead of i386-none-elf CFLAGS_x86_32 = -no-integrated-as -Qunused-arguments -target i386-linux-elf -m32 # Tone down some clang warnings -CFLAGS_x86_32 += -Wno-tautological-compare -Wno-shift-overflow +CFLAGS_x86_32 += -Wno-shift-overflow CC_x86_32:=clang HOSTCC := clang