diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-30 21:16:00 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-30 21:16:00 +0000 |
commit | 6a12fb6e733ffe9020e2eb9671f53c2425e2f38c (patch) | |
tree | a0575d4f9701461fea527ee54d8b27f994dcc38b /sys/arch | |
parent | ccc51e943876b61e8c712d9fb9b9dd567da89f56 (diff) |
Compile kernels with -mno-check-zero-division. Saves two pages, and things
will go wrong anyway, should the kernel divide by zero...
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mvme88k/conf/Makefile.mvme88k | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/conf/Makefile.mvme88k b/sys/arch/mvme88k/conf/Makefile.mvme88k index a736ccff1ba..e643a60a9b5 100644 --- a/sys/arch/mvme88k/conf/Makefile.mvme88k +++ b/sys/arch/mvme88k/conf/Makefile.mvme88k @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mvme88k,v 1.27 2003/07/22 19:39:50 otto Exp $ +# $OpenBSD: Makefile.mvme88k,v 1.28 2003/08/30 21:15:59 miod Exp $ # # Makefile for OpenBSD # @@ -37,6 +37,7 @@ 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 +CMACHFLAGS= -mno-check-zero-division .if ${IDENT:M-DNO_PROPOLICE} CMACHFLAGS+= -fno-stack-protector .endif |