diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-11 22:58:13 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-11 22:58:13 +0000 |
commit | 1c97f69f8c86b1e2005e7f8d037933fa8d4532f6 (patch) | |
tree | b39edd00e1e858f6c23469624f15843f1caa680f /app/xterm/Makefile | |
parent | 122200530a2dc622c51a0c7d261e97b4f84ebee7 (diff) |
Add -fno-stack-protector to the two files which already need to be built
with -O1 on landisk - they definitely hit worst case logic in what passes for
a compiler we're using.
ok martynas@
Diffstat (limited to 'app/xterm/Makefile')
-rw-r--r-- | app/xterm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/xterm/Makefile b/app/xterm/Makefile index 102051cce..858503f82 100644 --- a/app/xterm/Makefile +++ b/app/xterm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.22 2013/03/09 14:45:38 matthieu Exp $ +# $OpenBSD: Makefile,v 1.23 2014/04/11 22:58:12 miod Exp $ .include <bsd.xconf.mk> SUBDIR= icons resize @@ -30,10 +30,10 @@ XETC?= /etc/X11 .if ${MACHINE_ARCH} == "sh" charproc.o: charproc.c - ${CC} -O1 -c ${CPPFLAGS} ${.CURDIR}/charproc.c + ${CC} -O1 -fno-stack-protector -c ${CPPFLAGS} ${.CURDIR}/charproc.c screen.o: screen.c - ${CC} -O1 -c ${CPPFLAGS} ${.CURDIR}/screen.c + ${CC} -O1 -fno-stack-protector -c ${CPPFLAGS} ${.CURDIR}/screen.c .endif .SUFFIXES: .man .1 |