From owner-freebsd-emulation@FreeBSD.ORG Wed Oct 30 20:28:11 2013 Return-Path: Delivered-To: vbox@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 241CBBD3 for ; Wed, 30 Oct 2013 20:28:11 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-oa0-x22b.google.com (mail-oa0-x22b.google.com [IPv6:2607:f8b0:4003:c02::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE30D211D for ; Wed, 30 Oct 2013 20:28:10 +0000 (UTC) Received: by mail-oa0-f43.google.com with SMTP id m1so2079860oag.30 for ; Wed, 30 Oct 2013 13:28:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=x3FvSbMXN4wONbFiTyJlw9+eM8rEDxm2utuDx3b8ykI=; b=CEGYy2Ecl2OsaL3D9gDvu70T7lz8Kyg5AFXyCtBNfVxcK+XURgKklRvFSYmb577PlC WPLUz+lXioLpbAoRYMkohEnbt2Sq0TAPRd3w8xmrSROXv0CwY9MTmXo4qxQTexKZwAOS +kf2Buhg+ezYrRVw0FVF1D90eB1IRHPdo6Qwo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=x3FvSbMXN4wONbFiTyJlw9+eM8rEDxm2utuDx3b8ykI=; b=Cev6JK9w2NmWss1+zfwwvwDRfUMbgarS0AjqTs8npoXEzlda12slzJk9O/ul4efiqA eD4hEuVrLfnetiycObmT9TbKfwosi84pdm86CS6O6m6h9JoxkMXUEsglVQvS7qH8K44l c+c9CVPsgHTj8q6nj9/gj68KKkvnv5XHGsaemuYbcH4bVbyb2qdnborKkMgk9VmxZzS6 f1fK6Vs1Grbe+HZ2fpyipzeL5oWAyN1kDtCSpVCK2ibv49ERqnDGDkm0Qdx8hKM9N2TB VDfUGf8ABG0kQOXT+6xeMSD7/VQ4QMwY2vgg32vynSfh02dxCiervmjLM+ES/sRXQgW1 yivA== X-Gm-Message-State: ALoCoQlUcxv2RPe0OCa1QPBIVcaj8dfA+UAXrIhEnFevnOcXSGGwXKwKLY9nIQCOYLYMHtWTpgH8 MIME-Version: 1.0 X-Received: by 10.60.45.102 with SMTP id l6mr5632915oem.36.1383164890155; Wed, 30 Oct 2013 13:28:10 -0700 (PDT) Sender: decke@bluelife.at Received: by 10.76.154.2 with HTTP; Wed, 30 Oct 2013 13:28:10 -0700 (PDT) X-Originating-IP: [46.75.69.236] In-Reply-To: References: Date: Wed, 30 Oct 2013 21:28:10 +0100 X-Google-Sender-Auth: UPv7ztnUpYOH_02YJ4t9GHgfvhs Message-ID: Subject: Re: Building on Freebsd-10.0 From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: "Sam Fourman Jr." Content-Type: text/plain; charset=ISO-8859-1 X-Mailman-Approved-At: Wed, 30 Oct 2013 20:44:00 +0000 Cc: vbox@freebsd.org, Karol Barski X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 30 Oct 2013 20:28:11 -0000 On Wed, Oct 30, 2013 at 2:15 AM, Sam Fourman Jr. wrote: > On Oct 29, 2013 8:51 PM, "Karol Barski" wrote: >> >> Hi, >> >> I've tried to build emulators/virtualbox-ose-additions port on >> FreeBSD-10.0-BETA2 with no success. >> After while of searching I found out that problem is that virtualbox links >> to libsupc++ and in FreeBSD default std C++ library used in libcxxrt. >> >> In attachement You can find corrected Makefile which solved situation for >> me. >> >> Basically in post-patch target in makefile I'm replacing of supc++ to > cxxrt >> for makefiles in worktree which linked it when OSVERSION is greater than >> 10000000. >> I have tested this only on FreeBSD-10.0-BETA1 and FreeBSD-10.0-BETA2. >> >> --------------------------------------------------------------- >> .if ${OSVERSION} > 1000000 >> @${REINPLACE_CMD} -e 's|supc\+\+|cxxrt|' ${WRKSRC}/Config.kmk \ >> ${WRKSRC}/src/VBox/Additions/x11/VBoxClient/Makefile.kmk >> .endif >> ---------------------------------------------------------------- >> > > Just for refrence, I have the same issues on HEAD and 10.x I can't get vbox > in a usable state, even on a fresh install. > It seems vbox is completley broken on anything that isn't 9.2 That is true to some degree. I try to keep vbox compile properly on 10 but since I do not have a proper 10 box to really do runtime testing it stays as it is unless I migrate my laptop to 10 or someone other steps up to look into the issues. It is a chicken and egg problem and the only way to solve that is by volunteering or at least helping with _proper_ bug reports. Up to now the only bugreports for 10 that I have are too less technical that anyone could look deepter into it without reproducing it. -- Bernhard Froehlich http://www.bluelife.at/