Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Jan 2015 21:34:09 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277612 - head
Message-ID:  <201501232134.t0NLY9if013703@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Fri Jan 23 21:34:08 2015
New Revision: 277612
URL: https://svnweb.freebsd.org/changeset/base/277612

Log:
  Restore addr2line to cross tools
  
  Addr2line is not required for the build, and a per-arch binary is no
  longer required with the switch to the ELF Tool Chain. However, building
  these tools during the cross tools stage can be useful for developers
  who cross build HEAD from stable/10, and adds very little to the build
  time.
  
  Reviewed by:	ian, imp
  Differential Revision:	https://reviews.freebsd.org/D1583

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Jan 23 21:08:24 2015	(r277611)
+++ head/Makefile.inc1	Fri Jan 23 21:34:08 2015	(r277612)
@@ -1437,6 +1437,9 @@ _elftctools=	lib/libelftc \
 		usr.bin/nm \
 		usr.bin/size \
 		usr.bin/strings
+# These are not required by the build, but can be useful for developers who
+# cross-build on a FreeBSD 10 host:
+_elftctools+=	usr.bin/addr2line
 .endif
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501232134.t0NLY9if013703>