diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-09-02 03:55:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-09-02 03:55:47 +0000 |
commit | 278bf4088978c87e55c2087e0e70d3de5b0f060d (patch) | |
tree | b0e0f2e248270d05ccb5fbc192c3dd65774b3ff9 | |
parent | aec211635086a21d1e82e1afd9eb24b7ff3a8b2a (diff) |
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
-rw-r--r-- | usr.bin/tic/Makefile | 5 |
1 files 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 |