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/alpha | |
parent | cee02ee6bc6bed99ada77f502ba73a523c37fd02 (diff) |
Add -Wno-pointer-sign to all our gcc4 architectures.
ok patrick@ (for armv7), deraadt@
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/conf/Makefile.alpha | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha index d05a8be2c7e..a6ab7f91a33 100644 --- a/sys/arch/alpha/conf/Makefile.alpha +++ b/sys/arch/alpha/conf/Makefile.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.alpha,v 1.88 2016/04/29 12:44:52 mpi Exp $ +# $OpenBSD: Makefile.alpha,v 1.89 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= -mno-fp-regs -Wa,-mev56 |