-O1 on vax isn't quite enough, add -fgcse -fstrength-reduce -fgcse-after-reload

too.  We can build again.
This commit is contained in:
matt 2007-04-15 22:53:08 +00:00
parent c1ee0b42d1
commit 8655342068

View File

@ -1,4 +1,4 @@
# $NetBSD: sys.mk,v 1.91 2007/04/14 18:39:46 matt Exp $
# $NetBSD: sys.mk,v 1.92 2007/04/15 22:53:08 matt Exp $
# @(#)sys.mk 8.2 (Berkeley) 3/21/94
unix?= We run NetBSD.
@ -31,9 +31,10 @@ CC?= cc
${MACHINE_ARCH} == "ns32k" || \
${MACHINE_ARCH} == "powerpc" || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "sparc64" || \
${MACHINE_ARCH} == "Xvax"
${MACHINE_ARCH} == "sparc64"
DBG?= -O2
.elif ${MACHINE_ARCH} == "vax"
DBG?= -O1 -fgcse -fstrength-reduce -fgcse-after-reload
.else
DBG?= -O
.endif