| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.12 2004/12/13 23:49:07 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.13 2004/12/14 05:04:09 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Toolchain Ninjas <ninjas@gentoo.org> |
5 | # Author: Toolchain Ninjas <ninjas@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass contains (or should) functions to get common info |
7 | # This eclass contains (or should) functions to get common info |
| 8 | # about the toolchain (libc/compiler/binutils/etc...) |
8 | # about the toolchain (libc/compiler/binutils/etc...) |
| … | |
… | |
| 93 | echo 'int main(){return 0;}' > "${tmpfile}" |
93 | echo 'int main(){return 0;}' > "${tmpfile}" |
| 94 | $(tc-getCC) "${tmpfile}" -o "${tmpfile}".bin |
94 | $(tc-getCC) "${tmpfile}" -o "${tmpfile}".bin |
| 95 | "${tmpfile}".bin &>/dev/null |
95 | "${tmpfile}".bin &>/dev/null |
| 96 | ret=$? |
96 | ret=$? |
| 97 | rm -f "${tmpfile}" "${tmpfile}".bin |
97 | rm -f "${tmpfile}" "${tmpfile}".bin |
|
|
98 | return ${ret} |
| 98 | } |
99 | } |
| 99 | |
100 | |
| 100 | |
101 | |
| 101 | # Returns the version as by `$CC -dumpversion` |
102 | # Returns the version as by `$CC -dumpversion` |
| 102 | gcc-fullversion() { |
103 | gcc-fullversion() { |