All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] powerpc: Disable attribute-alias warnings from gcc8
@ 2018-05-04 19:23 Khem Raj
  2018-05-04 19:23 ` [PATCH 2/2] powerpc/ptrace: Disable array-bounds warning with gcc8 Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2018-05-04 19:23 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: Khem Raj, Benjamin Herrenschmidt

Fixes
alias between functions of incompatible types warnings
which are new with gcc8

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: linuxppc-dev@lists.ozlabs.org
---
 arch/powerpc/kernel/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile
index 2b4c40b255e4..7ac5a68ad6b1 100644
--- a/arch/powerpc/kernel/Makefile
+++ b/arch/powerpc/kernel/Makefile
@@ -3,7 +3,8 @@
 # Makefile for the linux kernel.
 #
 
-CFLAGS_ptrace.o		+= -DUTS_MACHINE='"$(UTS_MACHINE)"'
+CFLAGS_ptrace.o		+= -DUTS_MACHINE='"$(UTS_MACHINE)"' $(call cc-disable-warning, attribute-alias)
+CFLAGS_syscalls.o	+= $(call cc-disable-warning, attribute-alias)
 
 subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
 
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-05-08 14:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-04 19:23 [PATCH 1/2] powerpc: Disable attribute-alias warnings from gcc8 Khem Raj
2018-05-04 19:23 ` [PATCH 2/2] powerpc/ptrace: Disable array-bounds warning with gcc8 Khem Raj
2018-05-08 14:40   ` Michael Ellerman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.