Module Name: src
Committed By: mrg
Date: Tue Dec 22 04:50:13 UTC 2009
Modified Files:
src/lib/libc/gmon [matt-nb5-mips64]: Makefile.inc
Log Message:
pullup from -current:
>revision 1.9
>date: 2009/12/17 06:54:51; author: mrg; state: Exp; lines: +3 -2
>don't warn about mcount on mips64* as well.
>
>XXX: someone really should fix mips profile.h's MCOUNT!
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.12.1 src/lib/libc/gmon/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/gmon/Makefile.inc
diff -u src/lib/libc/gmon/Makefile.inc:1.8 src/lib/libc/gmon/Makefile.inc:1.8.12.1
--- src/lib/libc/gmon/Makefile.inc:1.8 Tue Jul 29 14:20:12 2008
+++ src/lib/libc/gmon/Makefile.inc Tue Dec 22 04:50:13 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.8 2008/07/29 14:20:12 lukem Exp $
+# $NetBSD: Makefile.inc,v 1.8.12.1 2009/12/22 04:50:13 mrg Exp $
# @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
# gmon sources
@@ -10,7 +10,8 @@
MAN+= moncontrol.3
MLINKS+=moncontrol.3 monstartup.3
-.if (${MACHINE_ARCH} == "mipseb") || (${MACHINE_ARCH} == "mipsel")
+.if (${MACHINE_ARCH} == "mipseb") || (${MACHINE_ARCH} == "mipsel") || \
+ (${MACHINE_ARCH} == "mips64eb") || (${MACHINE_ARCH} == "mips64el")
# Turn off as(1) warnings on MIPS, since warnings are fatal with WARNS>0
# and mcount.c causes warnings from as(1).
# mcount.c should be fixed and this test removed.