| 1 | # Copyright 1999-2004 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.11 2004/12/07 22:30:24 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.36 2005/05/02 22:42:59 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 multilib |
| 11 | |
11 | |
| 12 | ECLASS=toolchain-funcs |
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() { |
| 18 | local var="$1" |
18 | local var=$1 |
| 19 | local prog="$2" |
19 | local prog=$2 |
| 20 | local search="" |
|
|
| 21 | |
20 | |
| 22 | if [ -n "${!var}" ] ; then |
21 | if [[ -n ${!var} ]] ; then |
| 23 | echo "${!var}" |
22 | echo "${!var}" |
| 24 | return 0 |
23 | return 0 |
| 25 | fi |
24 | fi |
| 26 | |
25 | |
| 27 | if [ -n "${CTARGET}" ] ; then |
26 | local search= |
| 28 | search="$(type -p "${CTARGET}-${prog}")" |
27 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
| 29 | elif [ -n "${CHOST}" ] ; then |
28 | [[ -z ${search} && -n $(get_abi_CHOST) ]] && search=$(type -p "$(get_abi_CHOST)-${prog}") |
| 30 | search="$(type -p "${CHOST}-${prog}")" |
29 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
| 31 | fi |
30 | [[ -n ${search} ]] && prog=${search##*/} |
| 32 | |
31 | |
| 33 | if [ -n "${search}" ] ; then |
|
|
| 34 | prog="${search##*/}" |
|
|
| 35 | fi |
|
|
| 36 | export ${var}="${prog}" |
32 | export ${var}=${prog} |
| 37 | echo "${!var}" |
33 | echo "${!var}" |
| 38 | } |
34 | } |
| 39 | |
35 | |
| 40 | # Returns the name of the archiver |
36 | # Returns the name of the archiver |
| 41 | tc-getAR() { tc-getPROG AR ar; } |
37 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 42 | # Returns the name of the assembler |
38 | # Returns the name of the assembler |
| 43 | tc-getAS() { tc-getPROG AS as; } |
39 | tc-getAS() { tc-getPROG AS as "$@"; } |
| 44 | # Returns the name of the C compiler |
40 | # Returns the name of the C compiler |
| 45 | tc-getCC() { tc-getPROG CC gcc; } |
41 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
| 46 | # Returns the name of the C++ compiler |
42 | # Returns the name of the C++ compiler |
| 47 | tc-getCXX() { tc-getPROG CXX g++; } |
43 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 48 | # Returns the name of the linker |
44 | # Returns the name of the linker |
| 49 | tc-getLD() { tc-getPROG LD ld; } |
45 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 50 | # Returns the name of the symbol/object thingy |
46 | # Returns the name of the symbol/object thingy |
| 51 | tc-getNM() { tc-getPROG NM nm; } |
47 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 52 | # Returns the name of the archiver indexer |
48 | # Returns the name of the archiver indexer |
| 53 | tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
49 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
| 54 | # Returns the name of the fortran compiler |
50 | # Returns the name of the fortran compiler |
| 55 | tc-getF77() { tc-getPROG F77 f77; } |
51 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
| 56 | # Returns the name of the java compiler |
52 | # Returns the name of the java compiler |
| 57 | tc-getGCJ() { tc-getPROG GCJ gcj; } |
53 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 58 | |
54 | |
| 59 | # Returns the name of the C compiler for build |
55 | # Returns the name of the C compiler for build |
| 60 | tc-getBUILD_CC() { |
56 | tc-getBUILD_CC() { |
| 61 | if [ -n "${CC_FOR_BUILD}" ] ; then |
57 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
| 62 | export BUILD_CC="${CC_FOR_BUILD}" |
58 | export BUILD_CC=${CC_FOR_BUILD} |
| 63 | echo "${CC_FOR_BUILD}" |
59 | echo "${CC_FOR_BUILD}" |
| 64 | return 0 |
60 | return 0 |
| 65 | fi |
61 | fi |
| 66 | |
62 | |
| 67 | local search= |
63 | local search= |
| 68 | if [ -n "${CBUILD}" ] ; then |
64 | if [[ -n ${CBUILD} ]] ; then |
| 69 | search="$(type -p "${CBUILD}-gcc")" |
65 | search=$(type -p ${CBUILD}-gcc) |
|
|
66 | search=${search##*/} |
|
|
67 | else |
|
|
68 | search=gcc |
| 70 | fi |
69 | fi |
| 71 | |
70 | |
| 72 | if [ -n "${search}" ] ; then |
|
|
| 73 | search="${search##*/}" |
|
|
| 74 | else |
|
|
| 75 | search="gcc" |
|
|
| 76 | fi |
|
|
| 77 | |
|
|
| 78 | export BUILD_CC="${search}" |
71 | export BUILD_CC=${search} |
| 79 | echo "${search}" |
72 | echo "${search}" |
| 80 | } |
73 | } |
| 81 | |
74 | |
| 82 | # Quick way to export a bunch of vars at once |
75 | # Quick way to export a bunch of vars at once |
| 83 | tc-export() { |
76 | tc-export() { |
| 84 | local var |
77 | local var |
| 85 | for var in "$@" ; do |
78 | for var in "$@" ; do |
| 86 | eval tc-get${var} |
79 | eval tc-get${var} > /dev/null |
| 87 | done |
80 | done |
| 88 | } |
81 | } |
| 89 | |
82 | |
|
|
83 | # A simple way to see if we're using a cross-compiler ... |
|
|
84 | tc-is-cross-compiler() { |
|
|
85 | if [[ -n ${CBUILD} ]] ; then |
|
|
86 | return $([[ ${CBUILD} != ${CHOST} ]]) |
|
|
87 | fi |
|
|
88 | return 1 |
|
|
89 | } |
|
|
90 | |
|
|
91 | |
|
|
92 | # Parse information from CBUILD/CHOST/CTARGET rather than |
|
|
93 | # use external variables from the profile. |
|
|
94 | tc-ninja_magic_to_arch() { |
|
|
95 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
|
|
96 | |
|
|
97 | local type=$1 |
|
|
98 | local host=$2 |
|
|
99 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
100 | |
|
|
101 | case ${host} in |
|
|
102 | alpha*) echo alpha;; |
|
|
103 | x86_64*) ninj x86_64 amd64;; |
|
|
104 | arm*) echo arm;; |
|
|
105 | hppa*) ninj parisc hppa;; |
|
|
106 | ia64*) echo ia64;; |
|
|
107 | m68*) echo m68k;; |
|
|
108 | mips*) echo mips;; |
|
|
109 | powerpc64*) echo ppc64;; |
|
|
110 | powerpc*) echo ppc;; |
|
|
111 | sparc64*) ninj sparc64 sparc;; |
|
|
112 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
|
|
113 | && ninj sparc64 sparc \ |
|
|
114 | || echo sparc |
|
|
115 | ;; |
|
|
116 | s390*) echo s390;; |
|
|
117 | sh64*) ninj sh64 sh;; |
|
|
118 | sh*) echo sh;; |
|
|
119 | i?86*) ninj i386 x86;; |
|
|
120 | *) echo ${ARCH};; |
|
|
121 | esac |
|
|
122 | } |
|
|
123 | tc-arch-kernel() { |
|
|
124 | tc-ninja_magic_to_arch kern $@ |
|
|
125 | } |
|
|
126 | tc-arch() { |
|
|
127 | tc-ninja_magic_to_arch portage $@ |
|
|
128 | } |
|
|
129 | tc-endian() { |
|
|
130 | local host=$1 |
|
|
131 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
132 | host=${host%%-*} |
|
|
133 | |
|
|
134 | case ${host} in |
|
|
135 | alpha*) echo big;; |
|
|
136 | x86_64*) echo little;; |
|
|
137 | arm*b*) echo big;; |
|
|
138 | arm*) echo little;; |
|
|
139 | hppa*) echo big;; |
|
|
140 | ia64*) echo little;; |
|
|
141 | m68*) echo big;; |
|
|
142 | mips*l*) echo little;; |
|
|
143 | mips*) echo big;; |
|
|
144 | powerpc*) echo big;; |
|
|
145 | sparc*) echo big;; |
|
|
146 | s390*) echo big;; |
|
|
147 | sh*b*) echo big;; |
|
|
148 | sh*) echo little;; |
|
|
149 | i?86*) echo little;; |
|
|
150 | *) echo wtf;; |
|
|
151 | esac |
|
|
152 | } |
| 90 | |
153 | |
| 91 | # Returns the version as by `$CC -dumpversion` |
154 | # Returns the version as by `$CC -dumpversion` |
| 92 | gcc-fullversion() { |
155 | gcc-fullversion() { |
| 93 | echo "$($(tc-getCC) -dumpversion)" |
156 | echo "$($(tc-getCC) -dumpversion)" |
| 94 | } |
157 | } |
| … | |
… | |
| 104 | gcc-minor-version() { |
167 | gcc-minor-version() { |
| 105 | echo "$(gcc-version | cut -f2 -d.)" |
168 | echo "$(gcc-version | cut -f2 -d.)" |
| 106 | } |
169 | } |
| 107 | # Returns the Micro version |
170 | # Returns the Micro version |
| 108 | gcc-micro-version() { |
171 | gcc-micro-version() { |
| 109 | echo "$(gcc-fullversion | cut -f3 -d.)" |
172 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 110 | } |
173 | } |