Re: another Make (maybe) problem

2014-04-06 Thread Robert Huff
Jilles Tjoelker writes: > These messages are harmless, but are fixed by r264167. And so they were. Thank you. Now back to the original issue. Robert Huff ___ freebsd-current@freebsd.org mailing list

static linking, libc multiple definitions

2014-04-06 Thread Sean Bruno
Doing static linking of qemu bsd user applications and I seem to get a lot of warnings about multiple symbols in libc. What's going on here? /usr/lib/libc.a(svc_simple.o): warning: multiple common of `__svc_maxrec' /usr/lib/libc.a(rpc_soc.o): warning: previous common is here /usr/lib/libc.a(svc_

Re: static linking, libc multiple definitions

2014-04-06 Thread David Chisnall
It looks like these two are defined in rpc_com.h, so they are declared and defined in multiple compilation units. That's not actually wrong (they'll have common linkage and be merged), but it's discouraged because it can mask other errors. Can you see if this patch fixes it for you? David I

Re: static linking, libc multiple definitions

2014-04-06 Thread Sean Bruno
On Sun, 2014-04-06 at 17:12 +0100, David Chisnall wrote: > It looks like these two are defined in rpc_com.h, so they are declared and > defined in multiple compilation units. That's not actually wrong (they'll > have common linkage and be merged), but it's discouraged because it can mask > othe

Re: another Make (maybe) problem

2014-04-06 Thread Robert Huff
I have new information. The previous problem occurs when I run this script: #! /bin/sh set -x cd /usr/src if [ -f buildworld.log ] then rm buildworld.log fi rm -rf /usr/obj cp -p /usr/src/sys/amd64/conf/JERUSALEM /root make cleandir date > ./buildworld.time make -d l buildwor

patch: report per-CPU per-state wakeup counts

2014-04-06 Thread Adrian Chadd
Hi, We don't report how many actual sleeps (ie, wakeups) that we're doing via ACPI. I'd like to add support for this. http://people.freebsd.org/~adrian/misc/20140406-acpica-wakeup-stat-1.diff comments? -a ___ freebsd-current@free