Module Name: src
Committed By: mrg
Date: Thu Dec 17 06:54:51 UTC 2009
Modified Files:
src/lib/libc/gmon: Makefile.inc
Log Message:
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.9 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.9
--- src/lib/libc/gmon/Makefile.inc:1.8 Tue Jul 29 14:20:12 2008
+++ src/lib/libc/gmon/Makefile.inc Thu Dec 17 06:54:51 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.8 2008/07/29 14:20:12 lukem Exp $
+# $NetBSD: Makefile.inc,v 1.9 2009/12/17 06:54:51 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.