diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-28 15:30:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-28 15:30:09 +0000 |
commit | ca7bbb5efcfa33cc693a078ce26a8d7248d2fd57 (patch) | |
tree | 394432004ce696831656a784b76373de0fe19167 /eclass | |
parent | Change from CC to tc-getCC in toolchain-funcs eclass to fix for newer gcc-con... (diff) | |
download | gentoo-2-ca7bbb5efcfa33cc693a078ce26a8d7248d2fd57.tar.gz gentoo-2-ca7bbb5efcfa33cc693a078ce26a8d7248d2fd57.tar.bz2 gentoo-2-ca7bbb5efcfa33cc693a078ce26a8d7248d2fd57.zip |
add fortran wrapper tc-getF77
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 15dad08c1dbd..7a78cf14f1c9 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.6 2004/10/26 13:01:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.7 2004/10/28 15:30:09 vapier Exp $ # # Author: Toolchain Ninjas <ninjas@gentoo.org> # @@ -54,6 +54,8 @@ tc-getLD() { tc-getPROG LD ld; } tc-getNM() { tc-getPROG NM nm; } # Returns the name of the archiver indexer tc-getRANLIB() { tc-getPROG RANLIB ranlib; } +# Returns the name of the fortran compiler +tc-getF77() { tc-getPROG F77 f77; } # Returns the name of the C compiler for build tc-getBUILD_CC() { |