| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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.29 2005/02/01 23:50:15 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.30 2005/02/13 21:17:24 eradicator 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...) |
| … | |
… | |
| 163 | gcc-minor-version() { |
163 | gcc-minor-version() { |
| 164 | echo "$(gcc-version | cut -f2 -d.)" |
164 | echo "$(gcc-version | cut -f2 -d.)" |
| 165 | } |
165 | } |
| 166 | # Returns the Micro version |
166 | # Returns the Micro version |
| 167 | gcc-micro-version() { |
167 | gcc-micro-version() { |
| 168 | echo "$(gcc-fullversion | cut -f3 -d.)" |
168 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 169 | } |
169 | } |