From owner-svn-src-all@FreeBSD.ORG Mon Mar 30 17:38:27 2015 Return-Path: Delivered-To: svn-src-all@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 F3FCF47C; Mon, 30 Mar 2015 17:38:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 DED017A2; Mon, 30 Mar 2015 17:38:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2UHcQi3015710; Mon, 30 Mar 2015 17:38:26 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2UHcQ5A015707; Mon, 30 Mar 2015 17:38:26 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201503301738.t2UHcQ5A015707@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Mon, 30 Mar 2015 17:38:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r280859 - in head: gnu/usr.bin/binutils usr.bin X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 17:38:27 -0000 Author: emaste Date: Mon Mar 30 17:38:25 2015 New Revision: 280859 URL: https://svnweb.freebsd.org/changeset/base/280859 Log: Switch to ELF toolchain readelf(1) ELF toolchain readelf lacked some functionality at the time other tools (like size, strip, nm, etc.) were switched over to the ELF toolchain versions. That has been addressed as of the last update, so we can add it to the list. PR: 198950 [exp-run] Reviewed by: bapt, imp, rpaulo Relnotes: yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D2156 Modified: head/gnu/usr.bin/binutils/Makefile head/usr.bin/Makefile Modified: head/gnu/usr.bin/binutils/Makefile ============================================================================== --- head/gnu/usr.bin/binutils/Makefile Mon Mar 30 17:15:48 2015 (r280858) +++ head/gnu/usr.bin/binutils/Makefile Mon Mar 30 17:38:25 2015 (r280859) @@ -13,7 +13,7 @@ SUBDIR= doc\ ${_nm} \ objcopy \ objdump \ - readelf \ + ${_readelf} \ ${_size} \ ${_strings} \ ${_strip} @@ -21,6 +21,7 @@ SUBDIR= doc\ .if ${MK_ELFTOOLCHAIN_TOOLS} == "no" _addr2line= addr2line _nm= nm +_readelf= readelf _size= size _strings= strings _strip= strip Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Mon Mar 30 17:15:48 2015 (r280858) +++ head/usr.bin/Makefile Mon Mar 30 17:38:25 2015 (r280859) @@ -133,6 +133,7 @@ SUBDIR= ${_addr2line} \ procstat \ protect \ rctl \ + ${_readelf} \ renice \ rev \ revoke \ @@ -238,6 +239,7 @@ SUBDIR+= ee _addr2line= addr2line _elfcopy= elfcopy _nm= nm +_readelf= readelf _size= size _strings= strings .endif