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/sparc64 | |
parent | cee02ee6bc6bed99ada77f502ba73a523c37fd02 (diff) |
Add -Wno-pointer-sign to all our gcc4 architectures.
ok patrick@ (for armv7), deraadt@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/conf/Makefile.sparc64 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/conf/Makefile.sparc64 b/sys/arch/sparc64/conf/Makefile.sparc64 index 2b0ae1abe40..220fb0d6079 100644 --- a/sys/arch/sparc64/conf/Makefile.sparc64 +++ b/sys/arch/sparc64/conf/Makefile.sparc64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sparc64,v 1.73 2016/04/29 12:44:53 mpi Exp $ +# $OpenBSD: Makefile.sparc64,v 1.74 2016/09/24 19:13:03 kettenis Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -24,7 +24,7 @@ _archdir?= $S/arch/${_arch} INCLUDES= -nostdinc -I$S -I. -I$S/arch CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -MD -MP CWARNFLAGS= -Werror -Wall -Wimplicit-function-declaration \ - -Wno-main -Wno-uninitialized \ + -Wno-main -Wno-uninitialized -Wno-pointer-sign \ -Wframe-larger-than=2047 CMACHFLAGS= -Wa,-Av9b, -mno-fpu |