From owner-freebsd-emulation@FreeBSD.ORG Mon Dec 28 19:08:53 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C2861065676; Mon, 28 Dec 2009 19:08:53 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0E2AC8FC15; Mon, 28 Dec 2009 19:08:53 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 9061C46B49; Mon, 28 Dec 2009 14:08:52 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.9]) by bigwig.baldwin.cx (Postfix) with ESMTPA id 287A58A01B; Mon, 28 Dec 2009 14:08:40 -0500 (EST) From: John Baldwin To: Brandon Gooch , Martin Wilke Date: Mon, 28 Dec 2009 12:44:35 -0500 User-Agent: KMail/1.12.1 (FreeBSD/7.2-CBSD-20091103; KDE/4.3.1; amd64; ; ) References: <20091227232425.GA38213@bsdcrew.de> <200912281104.30930.jhb@freebsd.org> <179b97fb0912280846t286beec2p7307f255f96d89a3@mail.gmail.com> In-Reply-To: <179b97fb0912280846t286beec2p7307f255f96d89a3@mail.gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200912281244.35106.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Mon, 28 Dec 2009 14:08:40 -0500 (EST) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00,RDNS_NONE autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: ports@freebsd.org, freebsd-emulation@freebsd.org, freebsd-current@freebsd.org, gary.jennejohn@freenet.de Subject: Re: Call for tester: VirtualBox 3.1.2 for FreeBSD X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Dec 2009 19:08:53 -0000 On Monday 28 December 2009 11:46:36 am Brandon Gooch wrote: > On Mon, Dec 28, 2009 at 10:04 AM, John Baldwin wrote: > > On Monday 28 December 2009 9:25:28 am Gary Jennejohn wrote: > [SNIP] > >> > >> Does vboxguest.ko have silent dependencies on other vbox modules? I only > >> loaded vboxdrv.ko. > > > > Look in dmesg for the real kldload error message. > > > > I'm seeing this as well: > > kernel: link_elf_obj: symbol _Z6strlenPKc undefined > > ...which, I suppose, is the real kldload error message. Looks like it is trying to use a C++ named-version of strlen(): % echo _Z6strlenPKc | c++filt strlen(char const*) Is the kernel module compiled using c++ instead of cc? -- John Baldwin