diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-07-27 05:58:13 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-07-27 05:58:13 +0000 |
commit | e321bb4f02f8d259815fefaaf8ceb40153674b51 (patch) | |
tree | 77f3f5288ae6e1dce4daa7fc60a2958127190cda /sys/arch/mvme88k/conf | |
parent | 34aa0a61adcf1ff6404e30f1f422ba690b2c0a29 (diff) |
Compile all kernels with -Wstack-usage-larger-than-2047, now that all
offending code has been taken out and shot. ok deraadt@
Diffstat (limited to 'sys/arch/mvme88k/conf')
-rw-r--r-- | sys/arch/mvme88k/conf/Makefile.mvme88k | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/conf/Makefile.mvme88k b/sys/arch/mvme88k/conf/Makefile.mvme88k index 7b0608d9103..0a3d7b525a4 100644 --- a/sys/arch/mvme88k/conf/Makefile.mvme88k +++ b/sys/arch/mvme88k/conf/Makefile.mvme88k @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mvme88k,v 1.38 2006/05/04 19:24:12 miod Exp $ +# $OpenBSD: Makefile.mvme88k,v 1.39 2006/07/27 05:58:11 miod Exp $ # # Makefile for OpenBSD # @@ -37,7 +37,8 @@ M88K= $S/arch/m88k INCLUDES= -nostdinc -I. -I$S/arch -I$S CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -Dmvme88k -Dm88k CWARNFLAGS= -Wall -Werror -Wmissing-prototypes \ - -Wno-uninitialized -Wno-format -Wno-main -Wstrict-prototypes + -Wno-uninitialized -Wno-format -Wno-main -Wstrict-prototypes \ + -Wstack-larger-than-2047 CMACHFLAGS= -mno-check-zero-division -mmemcpy \ -fno-builtin-printf -fno-builtin-log .if ${IDENT:M-DNO_PROPOLICE} |