summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2019-02-19 05:57:18 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2019-02-19 05:57:18 +0000
commit2fac79d8807889b5e3b9799b0c377f7c03a7a245 (patch)
tree9f78b82ab52d69d64af539f2ad26838a7d6bd558
parent0dca465e35cfdb01e9fef508f8025f23c9651564 (diff)
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.
-rw-r--r--lib/mesa/Makefile.bsd-wrapper8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/mesa/Makefile.bsd-wrapper b/lib/mesa/Makefile.bsd-wrapper
index 4c45c30c7..5ffe6900c 100644
--- a/lib/mesa/Makefile.bsd-wrapper
+++ b/lib/mesa/Makefile.bsd-wrapper
@@ -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 \