| 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.1 2004/10/13 14:14:07 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.7 2004/10/28 15:30: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...) |
| 9 | |
9 | |
| 10 | inherit eutils |
10 | inherit eutils |
| 11 | |
11 | |
| 12 | ECLASS=toolfuncs |
12 | ECLASS=toolchain-funcs |
| 13 | INHERITED="$INHERITED $ECLASS" |
13 | INHERITED="$INHERITED $ECLASS" |
| 14 | |
14 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
16 | |
| 17 | tc-getPROG() { |
17 | tc-getPROG() { |
| … | |
… | |
| 23 | echo "${!var}" |
23 | echo "${!var}" |
| 24 | return 0 |
24 | return 0 |
| 25 | fi |
25 | fi |
| 26 | |
26 | |
| 27 | # how should we handle the host/target/build ? |
27 | # how should we handle the host/target/build ? |
| 28 | if [ -n "${CHOST}" ] ; then |
28 | if [ -n "${CTARGET}" ] ; then |
| 29 | search="$(type -p "${CHOST}-${prog}")" |
29 | search="$(type -p "${CTARGET}-${prog}")" |
| 30 | else |
30 | else |
| 31 | if [ -n "${CTARGET}" ] ; then |
31 | if [ -n "${CHOST}" ] ; then |
| 32 | search="$(type -p "${CTARGET}-${prog}")" |
32 | search="$(type -p "${CHOST}-${prog}")" |
| 33 | fi |
33 | fi |
| 34 | fi |
34 | fi |
| 35 | |
35 | |
| 36 | if [ -z "${search}" ] ; then |
36 | if [ -n "${search}" ] ; then |
| 37 | prog="${search##*/}" |
37 | prog="${search##*/}" |
| 38 | fi |
38 | fi |
| 39 | export ${var}="${prog}" |
39 | export ${var}="${prog}" |
| 40 | echo "${!var}" |
40 | echo "${!var}" |
| 41 | } |
41 | } |
| … | |
… | |
| 52 | tc-getLD() { tc-getPROG LD ld; } |
52 | tc-getLD() { tc-getPROG LD ld; } |
| 53 | # Returns the name of the symbol/object thingy |
53 | # Returns the name of the symbol/object thingy |
| 54 | tc-getNM() { tc-getPROG NM nm; } |
54 | tc-getNM() { tc-getPROG NM nm; } |
| 55 | # Returns the name of the archiver indexer |
55 | # Returns the name of the archiver indexer |
| 56 | tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
56 | tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
|
|
57 | # Returns the name of the fortran compiler |
|
|
58 | tc-getF77() { tc-getPROG F77 f77; } |
| 57 | |
59 | |
|
|
60 | # Returns the name of the C compiler for build |
|
|
61 | tc-getBUILD_CC() { |
|
|
62 | if [ -n "${CC_FOR_BUILD}" ] ; then |
|
|
63 | echo "${CC_FOR_BUILD}" |
|
|
64 | return 0 |
|
|
65 | fi |
|
|
66 | |
|
|
67 | if [ -n "${CBUILD}" ] ; then |
|
|
68 | local cc="$(type -p "${CBUILD}-gcc")" |
|
|
69 | if [ -n "${cc}" ] ; then |
|
|
70 | echo "${cc}" |
|
|
71 | fi |
|
|
72 | fi |
|
|
73 | |
|
|
74 | echo "gcc" |
|
|
75 | } |
| 58 | |
76 | |
| 59 | |
77 | |
| 60 | # Returns the version as by `$CC -dumpversion` |
78 | # Returns the version as by `$CC -dumpversion` |
| 61 | gcc-fullversion() { |
79 | gcc-fullversion() { |
| 62 | echo "$($(tc-getCC) -dumpversion)" |
80 | echo "$($(tc-getCC) -dumpversion)" |
| 63 | } |
81 | } |
| 64 | # Returns the version, but only the <major>.<minor> |
82 | # Returns the version, but only the <major>.<minor> |
| 65 | gcc-version() { |
83 | gcc-version() { |
| 66 | echo "$(cc-fullversion | cut -f1,2 -d.)" |
84 | echo "$(gcc-fullversion | cut -f1,2 -d.)" |
| 67 | } |
85 | } |
| 68 | # Returns the Major version |
86 | # Returns the Major version |
| 69 | gcc-major-version() { |
87 | gcc-major-version() { |
| 70 | echo "$(cc-version | cut -f1 -d.)" |
88 | echo "$(gcc-version | cut -f1 -d.)" |
| 71 | } |
89 | } |
| 72 | # Returns the Minor version |
90 | # Returns the Minor version |
| 73 | gcc-minor-version() { |
91 | gcc-minor-version() { |
| 74 | echo "$(cc-version | cut -f2 -d.)" |
92 | echo "$(gcc-version | cut -f2 -d.)" |
| 75 | } |
93 | } |
| 76 | # Returns the Micro version |
94 | # Returns the Micro version |
| 77 | gcc-micro-version() { |
95 | gcc-micro-version() { |
| 78 | echo "$(cc-fullversion | cut -f3 -d.)" |
96 | echo "$(gcc-fullversion | cut -f3 -d.)" |
| 79 | } |
97 | } |