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/sparc | |
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/sparc')
-rw-r--r-- | sys/arch/sparc/conf/Makefile.sparc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sparc/conf/Makefile.sparc b/sys/arch/sparc/conf/Makefile.sparc index 758c13389f6..e27b9742c8a 100644 --- a/sys/arch/sparc/conf/Makefile.sparc +++ b/sys/arch/sparc/conf/Makefile.sparc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sparc,v 1.35 2006/06/01 21:46:28 pascoe Exp $ +# $OpenBSD: Makefile.sparc,v 1.36 2006/07/27 05:58:12 miod Exp $ # $NetBSD: Makefile.sparc,v 1.32.4.1 1996/06/12 20:26:32 pk Exp $ # Makefile for OpenBSD @@ -38,7 +38,8 @@ INCLUDES= -nostdinc -I. -I$S/arch -I$S CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Dsparc CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ - -Wno-uninitialized -Wno-format -Wno-main + -Wno-uninitialized -Wno-format -Wno-main \ + -Wstack-larger-than-2047 .if ${IDENT:M-DSUN*} == ${IDENT:M-DSUN4M} CMACHFLAGS= -mcpu=supersparc |