Source-Changes-HG archive

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

[src/trunk]: src/sys/rump add + _SYMQUIRK='|\.(rump|RUMP)' for powerpc64, as ...



details:   https://anonhg.NetBSD.org/src/rev/e040aea6875f
branches:  trunk
changeset: 753274:e040aea6875f
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Mar 22 05:39:00 2010 +0000

description:
add + _SYMQUIRK='|\.(rump|RUMP)' for powerpc64, as recommended by pooka.
it gets rid of many of the warnings trying to link rump_cd9960, but
there are a bunch remaining.  atomic ops seem missing, and some ktrace
points.

diffstat:

 sys/rump/Makefile.rump |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r 44d756569429 -r e040aea6875f sys/rump/Makefile.rump
--- a/sys/rump/Makefile.rump    Mon Mar 22 05:12:24 2010 +0000
+++ b/sys/rump/Makefile.rump    Mon Mar 22 05:39:00 2010 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.rump,v 1.53 2010/03/21 06:55:44 pooka Exp $
+#      $NetBSD: Makefile.rump,v 1.54 2010/03/22 05:39:00 mrg Exp $
 #
 
 WARNS?=                3       # XXX: src/sys won't compile with -Wsign-compare yet
@@ -69,6 +69,8 @@
 _SYMQUIRK='|_gp_disp'
 .elif ${MACHINE_CPU} == "hppa"
 _SYMQUIRK='|\$$\$$'
+.elif ${MACHINE_ARCH} == "powerpc64"
+_SYMQUIRK='|\.(rump|RUMP)'
 .endif
 
 rump_symren: __archivebuild



Home | Main Index | Thread Index | Old Index