From owner-freebsd-ppc@FreeBSD.ORG Wed Jun 25 14:23:09 2014 Return-Path: Delivered-To: freebsd-ppc@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 ESMTPS id ECF8FD4; Wed, 25 Jun 2014 14:23:09 +0000 (UTC) Received: from mail-yh0-x22b.google.com (mail-yh0-x22b.google.com [IPv6:2607:f8b0:4002:c01::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 809402DBD; Wed, 25 Jun 2014 14:23:09 +0000 (UTC) Received: by mail-yh0-f43.google.com with SMTP id a41so1188326yho.16 for ; Wed, 25 Jun 2014 07:23:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=cA+TWVGbZzljwfjlVX+i1U89hzT8AgOrKfq9EZiPxl0=; b=i1zZs2ouh40+iM/MZzF/X0rLi5M2aFboH/maDuyOHhgNQhvvbVEFiazsDjHcZlTs8y Bym0FhJRFIeriPfs2SyStjOOMt0DtyAmDCqHwdI7IXBMZ3/e93KpBv2M3yd2PoMuTMQ8 nnADBIyjVuUev3DARHrxUoHsYhYCHIVnxuR89it0BsKuOW4MomScZubFwLp288Pr1OXV CYc7XEhVNyaTgPmidi9NFWusyj0AFCq4KwlsOJUmwFGMqsI2c1GVHRdqGAVSuNsznrUK oYCK4a0LZ8wxYjxaY4rAKOl3xWK0bM/SzQsd88owAHuI4qIYkqHHoG7ab31iP6V9fCFs rTVQ== X-Received: by 10.236.32.65 with SMTP id n41mr12092875yha.117.1403706188657; Wed, 25 Jun 2014 07:23:08 -0700 (PDT) Received: from zhabar.att.net (107-222-186-3.lightspeed.sntcca.sbcglobal.net. [107.222.186.3]) by mx.google.com with ESMTPSA id j21sm5293626yhj.29.2014.06.25.07.23.07 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Wed, 25 Jun 2014 07:23:08 -0700 (PDT) Date: Wed, 25 Jun 2014 07:23:05 -0700 From: Justin Hibbits To: Alexey Dokuchaev Subject: Re: Boost 1.55.0 (Was: Re: PowerPC Packages) Message-ID: <20140625072305.45baf39b@zhabar.att.net> In-Reply-To: <20140625073340.GA57075@FreeBSD.org> References: <539DC0C5.60603@freebsd.org> <20140623131222.GA26450@FreeBSD.org> <20140625073340.GA57075@FreeBSD.org> X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.22; powerpc64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: FreeBSD Mailing List , FreeBSD PowerPC ML X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 14:23:10 -0000 On Wed, 25 Jun 2014 07:33:40 +0000 Alexey Dokuchaev wrote: > On Mon, Jun 23, 2014 at 01:12:22PM +0000, Alexey Dokuchaev wrote: > > On Sun, Jun 15, 2014 at 08:50:29AM -0700, Nathan Whitehorn wrote: > > > depend upon failed. The largest issues are Boost and QT4 webkit. > > > Boost has failed because it seems to unconditionally prefer clang > > > to gcc when both are present. On PowerPC, both are installed but > > > GCC remains the default due to some remaining issues with clang. > > > Boost ignores the default, runs into the issues, and fails. Maybe > > > it should be forced to use whatever "cc" is? > > > > Since recently (after update to 1.55.0) boost started to require > > c++11-lang; I will take a look, maybe it's a bit too much. > > If one feels adventurous, they can try to change USES from > compiler:c++11-lang to simply `compiler' (equiv. to compiler:env) in > boost-all/compiled.mk and try to build (it will then use gcc4.2 on > 8.x/i386 and -current/powerpc). > > The bad news: it won't build as it is right now, due to `result_of' > related errors in Boost.Log. We're not alone, it was reported > upstream before: > > https://svn.boost.org/trac/boost/ticket/8769 > > As a possible workaround (also used for X_BUILD_FOR cross-build > case), one can try to build it --without-log (and perhaps > --without-coroutine). > > One thing bugs me about it: per > https://svn.boost.org/trac/boost/ticket/8769, version 1.52.0 should > also have problems with gcc4.2, but it builds fine... > > ./danfe As I mentioned earlier, you can set "FAVORITE_COMPILER=gcc" in make.conf, and it'll build with gcc47. - Justin