diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-09-24 19:13:04 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-09-24 19:13:04 +0000 |
commit | 644af9b1bd940dde309f118c5a2ff0773eac64bb (patch) | |
tree | 69e4185b4f5fc1b98a240be2f4eaacc58dda54de /sys/arch/octeon | |
parent | cee02ee6bc6bed99ada77f502ba73a523c37fd02 (diff) |
Add -Wno-pointer-sign to all our gcc4 architectures.
ok patrick@ (for armv7), deraadt@
Diffstat (limited to 'sys/arch/octeon')
-rw-r--r-- | sys/arch/octeon/conf/Makefile.octeon | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/octeon/conf/Makefile.octeon b/sys/arch/octeon/conf/Makefile.octeon index 3df37abf8f1..9fcf0af0991 100644 --- a/sys/arch/octeon/conf/Makefile.octeon +++ b/sys/arch/octeon/conf/Makefile.octeon @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.octeon,v 1.22 2016/04/29 12:44:52 mpi Exp $ +# $OpenBSD: Makefile.octeon,v 1.23 2016/09/24 19:13:03 kettenis Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -31,7 +31,7 @@ _archdir?= $S/arch/${_arch} INCLUDES= -nostdinc -I$S -I. -I$S/arch CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D__${_mach}__ -MD -MP CWARNFLAGS= -Werror -Wall -Wimplicit-function-declaration \ - -Wno-main -Wno-uninitialized \ + -Wno-main -Wno-uninitialized -Wno-pointer-sign \ -Wframe-larger-than=2047 CMACHFLAGS= -mno-abicalls ${ABI} -msoft-float -G 0 |