From owner-svn-src-head@FreeBSD.ORG Thu Jan 8 12:55:22 2015 Return-Path: Delivered-To: svn-src-head@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 C7D8F9B for ; Thu, 8 Jan 2015 12:55:22 +0000 (UTC) Received: from mailrelay8.public.one.com (mailrelay8.public.one.com [91.198.169.216]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 298C9C2A for ; Thu, 8 Jan 2015 12:55:21 +0000 (UTC) X-HalOne-Cookie: 43cb4da6ee54ee312eec2a01bf851ccfdf1d6b4b X-HalOne-ID: 6fedaa58-9735-11e4-bf9a-b82a72cffc46 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cederstrand.dk; s=20140924; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=s28q9pqbRGUn+v3FCtF7tbTjvqioy6RtT8tAnDaeQWI=; b=nv6HLsWY69f3hJsog/GoyW+eCrI6LaCbuwlQZ8vrDW2otQFOxBf6pDwLxSvgmBoDxSBPNhIDX2FbY 4OTMn5kTBkJneXLhURrSb3ln8W9ZBMYrQEIUJWHgFRDS1dWmVgUMpCTw1T3k0aNRbZuWtFicCjgEn+ KB9+wuApRBu2/lb0= Received: from [192.168.1.65] (unknown [217.157.7.221]) by smtpfilter4.public.one.com (Halon Mail Gateway) with ESMTPSA; Thu, 8 Jan 2015 12:54:09 +0000 (GMT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.1 \(1993\)) Subject: Re: svn commit: r276796 - in head: . share/mk tools/build/options From: Erik Cederstrand In-Reply-To: <201501072202.t07M2c85038999@svn.freebsd.org> Date: Thu, 8 Jan 2015 13:54:08 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <2D0BE9D0-45C7-4800-95F7-78BA3272E7E0@cederstrand.dk> References: <201501072202.t07M2c85038999@svn.freebsd.org> To: Ed Maste X-Mailer: Apple Mail (2.1993) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2015 12:55:22 -0000 Thanks, Ed. That's really cool! Does anyone know what the status of replacing ld is? Erik > Den 07/01/2015 kl. 23.02 skrev Ed Maste : >=20 > Author: emaste > Date: Wed Jan 7 22:02:37 2015 > New Revision: 276796 > URL: https://svnweb.freebsd.org/changeset/base/276796 >=20 > Log: > Use a set of ELF Tool Chain tools by default >=20 > These tools are now from the ELF Tool Chain project: >=20 > * addr2line > * elfcopy (strip) > * nm > * size > * strings >=20 > The binutils versions are available by setting in src.conf: > WITHOUT_ELFTOOLCHAIN_TOOLS=3Dyes >=20 > Thanks to antoine@ for multiple exp-runs and diagnosing many of the > failures. >=20 > PR: 195561 (ports exp-run) > Sponsored by: The FreeBSD Foundation >=20 > Added: > head/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS > - copied, changed from r276793, = head/tools/build/options/WITH_ELFTOOLCHAIN_TOOLS > Deleted: > head/tools/build/options/WITH_ELFTOOLCHAIN_TOOLS > Modified: > head/UPDATING > head/share/mk/src.opts.mk >=20 > Modified: head/UPDATING > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/UPDATING Wed Jan 7 21:44:57 2015 (r276795) > +++ head/UPDATING Wed Jan 7 22:02:37 2015 (r276796) > @@ -31,6 +31,13 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 > disable the most expensive debugging functionality run > "ln -s 'abort:false,junk:false' /etc/malloc.conf".) >=20 > +20150107: > + ELF tools addr2line, elfcopy (strip), nm, size, and strings are = now > + taken from the ELF Tool Chain project rather than GNU binutils. = They > + should be drop-in replacements, with the addition of arm64 = support. > + The WITHOUT_ELFTOOLCHAIN_TOOLS=3D knob may be used to obtain the > + binutils tools, if necessary. > + > 20150105: > The default Unbound configuration now enables remote control > using a local socket. Users who have already enabled the >=20 > Modified: head/share/mk/src.opts.mk > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/share/mk/src.opts.mk Wed Jan 7 21:44:57 2015 = (r276795) > +++ head/share/mk/src.opts.mk Wed Jan 7 22:02:37 2015 = (r276796) > @@ -73,6 +73,7 @@ __DEFAULT_YES_OPTIONS =3D \ > DMAGENT \ > DYNAMICROOT \ > ED_CRYPTO \ > + ELFTOOLCHAIN_TOOLS \ > EXAMPLES \ > FDT \ > FLOPPY \ > @@ -159,7 +160,6 @@ __DEFAULT_NO_OPTIONS =3D \ > BSD_GREP \ > CLANG_EXTRAS \ > EISA \ > - ELFTOOLCHAIN_TOOLS \ > FMAKE \ > HESIOD \ > LLDB \ >=20 > Copied and modified: = head/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS (from r276793, = head/tools/build/options/WITH_ELFTOOLCHAIN_TOOLS) > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/tools/build/options/WITH_ELFTOOLCHAIN_TOOLS Wed Jan 7 = 21:09:25 2015 (r276793, copy source) > +++ head/tools/build/options/WITHOUT_ELFTOOLCHAIN_TOOLS Wed Jan = 7 22:02:37 2015 (r276796) > @@ -6,4 +6,4 @@ Set to use > .Xr strings 1 , > and > .Xr strip 1 > -from the elftoolchain project instead of GNU binutils. > +from GNU binutils instead of the ELF Tool Chain project. > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to = "svn-src-head-unsubscribe@freebsd.org"