From owner-svn-ports-all@freebsd.org Mon Nov 23 11:56:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51144A35CEB; Mon, 23 Nov 2015 11:56:44 +0000 (UTC) (envelope-from freebsd.contact@marino.st) 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 2588811DA; Mon, 23 Nov 2015 11:56:43 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [192.168.1.22] (210.Red-81-38-187.dynamicIP.rima-tde.net [81.38.187.210]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id B418243BC7; Mon, 23 Nov 2015 05:56:41 -0600 (CST) Subject: Re: svn commit: r400959 - head/lang/sdcc-devel To: Tijl Coosemans , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201511062114.tA6LEsDF059892@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <5652FEF7.40400@marino.st> Date: Mon, 23 Nov 2015 12:56:39 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <201511062114.tA6LEsDF059892@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Nov 2015 11:56:44 -0000 On 11/6/2015 10:14 PM, Tijl Coosemans wrote: > Author: tijl > Date: Fri Nov 6 21:14:54 2015 > New Revision: 400959 > URL: https://svnweb.freebsd.org/changeset/ports/400959 > > Log: > Update to version 3.5.5.2015.11.06 > > Modified: > head/lang/sdcc-devel/Makefile > head/lang/sdcc-devel/distinfo > Hi tijl, This version has some serious build concurrency issues. The main one is that "make" is hardcoded so -j values don't get passed from gmake. The second issue involves build order of libiberty. This is the post-patch instructions we needed to add to build the latest version of sdcc-devel: > ${REINPLACE_CMD} -e 's@[[:<:]]make[[:>:]]@$${MAKE}@g' \ > ${WRKSRC}/support/cpp/Makefile.in > ${REINPLACE_CMD} -e 's@sdcc-libs:@sdcc-libs: sdcc-sdbinutils@g' \ > ${WRKSRC}/Makefile.in # libiberty.a build order issue Thanks, John