diff options
author | 2015-03-16 19:26:39 +0000 | |
---|---|---|
committer | 2015-03-16 19:26:39 +0000 | |
commit | 2925b1433e0f1873bade78a7ef7c95a3e48830ab (patch) | |
tree | 28b656ae642a4840b39717157d5de88ec858dad9 /eclass | |
parent | Fix compilation on Solaris (diff) | |
download | gentoo-2-2925b1433e0f1873bade78a7ef7c95a3e48830ab.tar.gz gentoo-2-2925b1433e0f1873bade78a7ef7c95a3e48830ab.tar.bz2 gentoo-2-2925b1433e0f1873bade78a7ef7c95a3e48830ab.zip |
tc-getOBJDUMP: new helper a few ebuilds want
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 0b96aba08f94..80317735f3be 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.133 2015/03/10 17:56:30 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.134 2015/03/16 19:26:39 vapier Exp $ # @ECLASS: toolchain-funcs.eclass # @MAINTAINER: @@ -84,6 +84,10 @@ tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } # @USAGE: [toolchain prefix] # @RETURN: name of the object copier tc-getOBJCOPY() { tc-getPROG OBJCOPY objcopy "$@"; } +# @FUNCTION: tc-getOBJDUMP +# @USAGE: [toolchain prefix] +# @RETURN: name of the object dumper +tc-getOBJDUMP() { tc-getPROG OBJDUMP objdump "$@"; } # @FUNCTION: tc-getF77 # @USAGE: [toolchain prefix] # @RETURN: name of the Fortran 77 compiler |