From 278bf4088978c87e55c2087e0e70d3de5b0f060d Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Sun, 2 Sep 2012 03:55:47 +0000 Subject: Document (in this commit message, and an annotation in the Makefile) that this sh-architecture gcc workaround is for the same bug that is found in sort/tmp.c --- usr.bin/tic/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.bin/tic/Makefile b/usr.bin/tic/Makefile index ee7a3e60f3e..0675bcf05b3 100644 --- a/usr.bin/tic/Makefile +++ b/usr.bin/tic/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2011/06/23 22:46:12 schwarze Exp $ +# $OpenBSD: Makefile,v 1.6 2012/09/02 03:55:46 deraadt Exp $ PROG= tic SRCS= dump_entry.c tic.c @@ -10,8 +10,9 @@ CURSES= ${.CURDIR}/../../lib/libcurses CFLAGS+= -I${CURSES} -I${.CURDIR} -I. CLEANFILES+= termsort.c captoinfo.1 +# Work around gcc optimization bug on sh .if (${MACHINE_ARCH} == sh) -COPTS+= -O1 +COPTS+= -O0 .endif beforedepend: termsort.c -- cgit v1.2.3