summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2003-08-08 22:32:14 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2003-08-08 22:32:14 +0000
commitec8d3a071a1872193280e5588bf4469ac4ad4cac (patch)
treed502b808bd21d3e0a745f58a64e2eeaef021806e /share
parentd16c8a472635884455b29f551eed61bf29099144 (diff)
Enable the first level of compiler optimizations on mvme88k by default,
now that is getting stable. ksh(1) still has to be builh at -O0 for now, though. ok deraadt@
Diffstat (limited to 'share')
-rw-r--r--share/mk/sys.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/sys.mk b/share/mk/sys.mk
index 93e74e1b73f..06e734edc6e 100644
--- a/share/mk/sys.mk
+++ b/share/mk/sys.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: sys.mk,v 1.33 2003/02/12 23:07:28 deraadt Exp $
+# $OpenBSD: sys.mk,v 1.34 2003/08/08 22:32:13 miod Exp $
# $NetBSD: sys.mk,v 1.27 1996/04/10 05:47:19 mycroft Exp $
# @(#)sys.mk 5.11 (Berkeley) 3/13/91
@@ -33,7 +33,7 @@ LINK.S?= ${CC} ${AFLAGS} ${CPPFLAGS} ${LDFLAGS}
CC?= cc
.if (${MACHINE_ARCH} == "m88k")
-CFLAGS?= -O0 ${PIPE} ${DEBUG}
+CFLAGS?= -O1 ${PIPE} ${DEBUG}
.else
CFLAGS?= -O2 ${PIPE} ${DEBUG}
.endif