Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mvme68k/stand/libbug Use -fomit-frame-pointer when ...



details:   https://anonhg.NetBSD.org/src/rev/6f148f983d23
branches:  trunk
changeset: 500063:6f148f983d23
user:      scw <scw%NetBSD.org@localhost>
date:      Mon Dec 04 18:35:16 2000 +0000

description:
Use -fomit-frame-pointer when compiling bugcrt.c; a6 needs to be reserved
for Bug arguments.

diffstat:

 sys/arch/mvme68k/stand/libbug/Makefile |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 8726f3c2b47f -r 6f148f983d23 sys/arch/mvme68k/stand/libbug/Makefile
--- a/sys/arch/mvme68k/stand/libbug/Makefile    Mon Dec 04 17:45:17 2000 +0000
+++ b/sys/arch/mvme68k/stand/libbug/Makefile    Mon Dec 04 18:35:16 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.10 2000/07/28 20:08:21 scw Exp $
+#      $NetBSD: Makefile,v 1.11 2000/12/04 18:35:16 scw Exp $
 
 LIB=bug
 
@@ -21,7 +21,8 @@
 # separate rule for bugcrt.c - NEED NOT BE COMPILED WITH -O2
 # this is build separately from rest of libbug
 bugcrt.o: bugcrt.c
-       ${CC} -nostdinc ${INCPATH} -D_STANDALONE -o ${.TARGET}.tmp -c ${.IMPSRC}
+       ${CC} -fomit-frame-pointer -nostdinc ${INCPATH} -D_STANDALONE \
+           -o ${.TARGET}.tmp -c ${.IMPSRC}
        ${LD} -x -r ${.TARGET}.tmp -o ${.TARGET}
 
 all realall: lib${LIB}.a bugcrt.o



Home | Main Index | Thread Index | Old Index