Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90a64424 authored by Srinivasarao P's avatar Srinivasarao P Committed by Gerrit - the friendly Code Review server
Browse files

Makefile: Suppress few warnings with clang



Enable -Wno-unsequenced option to suppress these warnings on clang
compilation.

Change-Id: Ib6c81b4d489ccc1715e1f0d23833b8463a39f834
Signed-off-by: default avatarSrinivasarao P <spathi@codeaurora.org>
parent 4de5180f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -514,6 +514,7 @@ CLANG_FLAGS += -no-integrated-as
CLANG_FLAGS	+= -Werror=unknown-warning-option
CLANG_FLAGS	+= $(call cc-option, -Wno-misleading-indentation)
CLANG_FLAGS	+= $(call cc-option, -Wno-bool-operation)
CLANG_FLAGS	+= $(call cc-option, -Wno-unsequenced)
KBUILD_CFLAGS	+= $(CLANG_FLAGS)
KBUILD_AFLAGS	+= $(CLANG_FLAGS)
export CLANG_FLAGS