From owner-svn-ports-head@FreeBSD.ORG Mon Feb 16 07:32:32 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54AF05F0; Mon, 16 Feb 2015 07:32:32 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AF6CBE4; Mon, 16 Feb 2015 07:32:31 +0000 (UTC) Received: from [192.168.0.22] (unknown [130.255.19.191]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 915C843D0D; Mon, 16 Feb 2015 01:32:17 -0600 (CST) Message-ID: <54E19CFA.6040009@marino.st> Date: Mon, 16 Feb 2015 08:32:10 +0100 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Gerald Pfeifer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r379064 - head/devel/psptoolchain-binutils References: <201502160555.t1G5tnFY011765@svn.freebsd.org> In-Reply-To: <201502160555.t1G5tnFY011765@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Feb 2015 07:32:32 -0000 On 2/16/2015 06:55, Gerald Pfeifer wrote: > Author: gerald > Date: Mon Feb 16 05:55:48 2015 > New Revision: 379064 > URL: https://svnweb.freebsd.org/changeset/ports/379064 > QAT: https://qat.redports.org/buildarchive/r379064/ > > Log: > Force the use of GCC 4.8 since the old codebase here fails with newer > versionf of GCC. > > PR: 196854 > Approved by: tphilipp@potion-studios.com (maintainer) > > Modified: > head/devel/psptoolchain-binutils/Makefile > > Modified: head/devel/psptoolchain-binutils/Makefile > ============================================================================== > --- head/devel/psptoolchain-binutils/Makefile Mon Feb 16 05:35:36 2015 (r379063) > +++ head/devel/psptoolchain-binutils/Makefile Mon Feb 16 05:55:48 2015 (r379064) > @@ -14,7 +14,8 @@ MAINTAINER= tphilipp@potion-studios.com > COMMENT= PlayStation Portable development toolchain ${PORTNAME} > > USES= gmake tar:bzip2 libtool > -USE_GCC= any > +# This old code fails with newer versions of GCC, cf. PR 196854. > +USE_GCC= 4.8 > > HAS_CONFIGURE= yes > CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL} > I commented on the PR. This problem was already fixed, and it was building with newer GCC (5) without setting a specific value for USE_GCC. So technically this fix is wrong. However, the ports that depend on this port currently break with gcc-5, so they may be limited to gcc 4.9 (currently unknown). John