From owner-svn-ports-all@FreeBSD.ORG Wed Apr 1 19:58:16 2015 Return-Path: Delivered-To: svn-ports-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D89C1C45; Wed, 1 Apr 2015 19:58:16 +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 ACE7AFE; Wed, 1 Apr 2015 19:58:16 +0000 (UTC) Received: from [192.168.1.22] (183.Red-79-158-38.staticIP.rima-tde.net [79.158.38.183]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 7ECD443BD9; Wed, 1 Apr 2015 14:58:13 -0500 (CDT) Message-ID: <551C4DD2.8090303@marino.st> Date: Wed, 01 Apr 2015 21:58:10 +0200 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: Don Lewis , marino@FreeBSD.org Subject: Re: svn commit: r382945 - head/lang/gnatdroid-armv7 References: <201504011953.t31JrTDh004786@gw.catspoiler.org> In-Reply-To: <201504011953.t31JrTDh004786@gw.catspoiler.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 01 Apr 2015 19:58:17 -0000 On 4/1/2015 21:53, Don Lewis wrote: > On 1 Apr, John Marino wrote: >> Author: marino >> Date: Wed Apr 1 19:48:37 2015 >> New Revision: 382945 >> URL: https://svnweb.freebsd.org/changeset/ports/382945 >> >> Log: >> lang/gnatdroid-armv8: Mark broken on FreeBSD 8 >> >> This has never built on FreeBSD 8 after the base compiler was upgraded >> from GNAT 4.6 to 4.7 and later 4.9. It fails will many c++ complaints >> about multiple definition of __x86.get_pc_thunk.cx and consequential >> errors. I'm tired of the cluster builders sending me an email about it. >> I'm never going to fix it, so let's mark it broken. >> >> Modified: >> head/lang/gnatdroid-armv7/Makefile >> >> Modified: head/lang/gnatdroid-armv7/Makefile >> ============================================================================== >> --- head/lang/gnatdroid-armv7/Makefile Wed Apr 1 19:44:03 2015 (r382944) >> +++ head/lang/gnatdroid-armv7/Makefile Wed Apr 1 19:48:37 2015 (r382945) >> @@ -60,6 +60,10 @@ CROSS= gnat gnatbind gnatchop gnatclea >> >> .include >> >> +.if ${OPSYS} == FreeBSD && ${OSREL:R:M8} >> +BROKEN= multiple definition of __x86.get_pc_thunk.cx on FreeBSD 8 >> +.endif >> + > > I think using binutils from ports fixes that problem. Not that I really > care ... > > Hmm, it uses lang/gnatdroid-binutils-2.24 from ports. Admittedly it's not the latest 2.25, but it should be new enough? maybe there's a patch in devel/binutils that is needed.... John