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/cats | |
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/cats')
-rw-r--r-- | sys/arch/cats/conf/Makefile.cats | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/cats/conf/Makefile.cats b/sys/arch/cats/conf/Makefile.cats index 7556bce99b9..cf87b9ffdc0 100644 --- a/sys/arch/cats/conf/Makefile.cats +++ b/sys/arch/cats/conf/Makefile.cats @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile.cats,v 1.5 2006/06/01 21:46:27 pascoe Exp $ -# $OpenBSD: Makefile.cats,v 1.5 2006/06/01 21:46:27 pascoe Exp $ +# $OpenBSD: Makefile.cats,v 1.6 2006/07/27 05:58:11 miod Exp $ +# $OpenBSD: Makefile.cats,v 1.6 2006/07/27 05:58:11 miod Exp $ # $NetBSD: Makefile.i386,v 1.67 1996/05/11 16:12:11 mycroft Exp $ # Makefile for OpenBSD @@ -39,7 +39,8 @@ ARM= $S/arch/arm INCLUDES= -nostdinc -I. -I$S/arch -I$S CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -D__cats__ CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ - -Wno-uninitialized -Wno-format -Wno-main + -Wno-uninitialized -Wno-format -Wno-main \ + -Wstack-larger-than-2047 CMACHFLAGS= -ffreestanding #CMACHFLAGS= -march=armv4 -mtune=strongarm -ffreestanding |