remove -fno-tree-pre from CFLAGS on sparc64

This was an attempt to limit the memory usage at build time which is
no longer required after the datasize values in login.conf were raised.
This commit is contained in:
jsg 2019-02-19 05:57:17 +00:00
parent 89d5a5fe5c
commit fa5b0e3e48

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile.bsd-wrapper,v 1.22 2019/02/07 18:34:52 deraadt Exp $
# $OpenBSD: Makefile.bsd-wrapper,v 1.23 2019/02/19 05:57:17 jsg Exp $
.include <bsd.own.mk>
.include <bsd.xconf.mk>
@ -45,12 +45,6 @@ CONFIGURE_ARGS+= --enable-dri3
CONFIGURE_ARGS+= USER_CFLAGS="-march=i586" USER_CXXFLAGS="-march=i586"
.endif
# -O2 gives "cc1: out of memory allocating 488 bytes"
# on src/mesa/main/marshal_generated.c
.if ${MACHINE} == sparc64
CONFIGURE_ARGS+= USER_CFLAGS="-fno-tree-pre"
.endif
.if ${MACHINE} == alpha
# -O2 causes gcc ICE on main/format_pack.c and program/prog_execute.c
O1= -fdefer-pop -fguess-branch-probability -fcprop-registers \