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 | 153fef00ced683e5f55dffa6ca372859747b2837 (patch) | |
tree | abd5d583010763dc4b1d32965df18982123d02b8 /eclass/toolchain-funcs.eclass | |
parent | Change from CC to tc-getCC in toolchain-funcs eclass to fix for newer gcc-con... (diff) | |
download | historical-153fef00ced683e5f55dffa6ca372859747b2837.tar.gz historical-153fef00ced683e5f55dffa6ca372859747b2837.tar.bz2 historical-153fef00ced683e5f55dffa6ca372859747b2837.zip |
add fortran wrapper tc-getF77
Diffstat (limited to 'eclass/toolchain-funcs.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() { |