summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2011-12-03 15:36:22 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2011-12-03 15:36:22 +0000
commit43b7f974084ea1a2ab707a4f2175ecfc50d57f7b (patch)
treee9051356f5a939dfece9078379bb0d488f7a828b /lib
parent9f9c8b78d42e06cd2d2095e95722f321c4efa1b8 (diff)
Compile prog_execute.c with -fno-tree-ter on alpha (instead of -O0) to skirt
the ICE, until a fix is devised (insert annoyed comment about hairy tricky bugs in the ``reload'' code here).
Diffstat (limited to 'lib')
-rw-r--r--lib/libGL/libmesa/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libGL/libmesa/Makefile b/lib/libGL/libmesa/Makefile
index 5dcca50e8..1d2fef524 100644
--- a/lib/libGL/libmesa/Makefile
+++ b/lib/libGL/libmesa/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.12 2011/11/29 14:57:54 naddy Exp $
+# $OpenBSD: Makefile,v 1.13 2011/12/03 15:36:21 miod Exp $
MESA= ${.CURDIR}/../../../dist/Mesa/src/mesa
MAPI= ${.CURDIR}/../../../dist/Mesa/src/mapi
@@ -354,8 +354,8 @@ cleandir: clean
.if ${MACHINE_ARCH} == alpha
# remove optimization flags to prevent gcc 4.2.1 ICE
prog_execute.so: prog_execute.c
- @echo "${COMPILE.c:N-O*} ${PICFLAG} -DPIC ${.ALLSRC} -o ${.TARGET}"
- @${COMPILE.c:N-O*} ${PICFLAG} -DPIC ${.ALLSRC} -o ${.TARGET}.o
+ @echo "${COMPILE.c} -fno-tree-ter ${PICFLAG} -DPIC ${.ALLSRC} -o ${.TARGET}"
+ @${COMPILE.c} -fno-tree-ter ${PICFLAG} -DPIC ${.ALLSRC} -o ${.TARGET}.o
@${LD} -X -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
.endif