diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-03-02 19:27:41 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-03-02 19:27:41 +0000 |
commit | ffc83f00f9f2441b650a67f6a1b17e5948f851fe (patch) | |
tree | 20165f54ed0987a6dd770613bd9428356c77ab21 /sys | |
parent | 4225556ebe035fe7f3afc78026d1a643f93ab6f8 (diff) |
add -fno-defer-pop to CFLAGS
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sun3/conf/Makefile.sun3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sun3/conf/Makefile.sun3 b/sys/arch/sun3/conf/Makefile.sun3 index aceadbb39c6..c9da616e783 100644 --- a/sys/arch/sun3/conf/Makefile.sun3 +++ b/sys/arch/sun3/conf/Makefile.sun3 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sun3,v 1.18 1997/02/22 19:36:05 kstailey Exp $ +# $OpenBSD: Makefile.sun3,v 1.19 1997/03/02 19:27:40 kstailey Exp $ # $NetBSD: Makefile.sun3,v 1.51 1996/09/09 21:07:08 mycroft Exp $ # Makefile for OpenBSD @@ -41,7 +41,7 @@ CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes \ -Wno-format -Wno-uninitialized \ # -Wmissing-prototypes -CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float -pipe +CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float -fno-defer-pop -pipe AFLAGS= -m68020 -x assembler-with-cpp -traditional-cpp -D_LOCORE LINKFLAGS= -N -Ttext 0E004000 -e start STRIPFLAGS= -d |