1 |
# Copyright 1999-2005 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.36 2005/05/02 22:42:59 vapier Exp $ |
4 |
# |
5 |
# Author: Toolchain Ninjas <ninjas@gentoo.org> |
6 |
# |
7 |
# This eclass contains (or should) functions to get common info |
8 |
# about the toolchain (libc/compiler/binutils/etc...) |
9 |
|
10 |
inherit multilib |
11 |
|
12 |
ECLASS=toolchain-funcs |
13 |
INHERITED="$INHERITED $ECLASS" |
14 |
|
15 |
DESCRIPTION="Based on the ${ECLASS} eclass" |
16 |
|
17 |
tc-getPROG() { |
18 |
local var=$1 |
19 |
local prog=$2 |
20 |
|
21 |
if [[ -n ${!var} ]] ; then |
22 |
echo "${!var}" |
23 |
return 0 |
24 |
fi |
25 |
|
26 |
local search= |
27 |
[[ -n $3 ]] && search=$(type -p "$3-${prog}") |
28 |
[[ -z ${search} && -n $(get_abi_CHOST) ]] && search=$(type -p "$(get_abi_CHOST)-${prog}") |
29 |
[[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
30 |
[[ -n ${search} ]] && prog=${search##*/} |
31 |
|
32 |
export ${var}=${prog} |
33 |
echo "${!var}" |
34 |
} |
35 |
|
36 |
# Returns the name of the archiver |
37 |
tc-getAR() { tc-getPROG AR ar "$@"; } |
38 |
# Returns the name of the assembler |
39 |
tc-getAS() { tc-getPROG AS as "$@"; } |
40 |
# Returns the name of the C compiler |
41 |
tc-getCC() { tc-getPROG CC gcc "$@"; } |
42 |
# Returns the name of the C++ compiler |
43 |
tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
44 |
# Returns the name of the linker |
45 |
tc-getLD() { tc-getPROG LD ld "$@"; } |
46 |
# Returns the name of the symbol/object thingy |
47 |
tc-getNM() { tc-getPROG NM nm "$@"; } |
48 |
# Returns the name of the archiver indexer |
49 |
tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
50 |
# Returns the name of the fortran compiler |
51 |
tc-getF77() { tc-getPROG F77 f77 "$@"; } |
52 |
# Returns the name of the java compiler |
53 |
tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
54 |
|
55 |
# Returns the name of the C compiler for build |
56 |
tc-getBUILD_CC() { |
57 |
if [[ -n ${CC_FOR_BUILD} ]] ; then |
58 |
export BUILD_CC=${CC_FOR_BUILD} |
59 |
echo "${CC_FOR_BUILD}" |
60 |
return 0 |
61 |
fi |
62 |
|
63 |
local search= |
64 |
if [[ -n ${CBUILD} ]] ; then |
65 |
search=$(type -p ${CBUILD}-gcc) |
66 |
search=${search##*/} |
67 |
else |
68 |
search=gcc |
69 |
fi |
70 |
|
71 |
export BUILD_CC=${search} |
72 |
echo "${search}" |
73 |
} |
74 |
|
75 |
# Quick way to export a bunch of vars at once |
76 |
tc-export() { |
77 |
local var |
78 |
for var in "$@" ; do |
79 |
eval tc-get${var} > /dev/null |
80 |
done |
81 |
} |
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*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
111 |
&& ninj ppc64 ppc \ |
112 |
|| echo ppc |
113 |
;; |
114 |
sparc64*) ninj sparc64 sparc;; |
115 |
sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
116 |
&& ninj sparc64 sparc \ |
117 |
|| echo sparc |
118 |
;; |
119 |
s390*) echo s390;; |
120 |
sh64*) ninj sh64 sh;; |
121 |
sh*) echo sh;; |
122 |
i?86*) ninj i386 x86;; |
123 |
*) echo ${ARCH};; |
124 |
esac |
125 |
} |
126 |
tc-arch-kernel() { |
127 |
tc-ninja_magic_to_arch kern $@ |
128 |
} |
129 |
tc-arch() { |
130 |
tc-ninja_magic_to_arch portage $@ |
131 |
} |
132 |
tc-endian() { |
133 |
local host=$1 |
134 |
[[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
135 |
host=${host%%-*} |
136 |
|
137 |
case ${host} in |
138 |
alpha*) echo big;; |
139 |
x86_64*) echo little;; |
140 |
arm*b*) echo big;; |
141 |
arm*) echo little;; |
142 |
hppa*) echo big;; |
143 |
ia64*) echo little;; |
144 |
m68*) echo big;; |
145 |
mips*l*) echo little;; |
146 |
mips*) echo big;; |
147 |
powerpc*) echo big;; |
148 |
sparc*) echo big;; |
149 |
s390*) echo big;; |
150 |
sh*b*) echo big;; |
151 |
sh*) echo little;; |
152 |
i?86*) echo little;; |
153 |
*) echo wtf;; |
154 |
esac |
155 |
} |
156 |
|
157 |
# Returns the version as by `$CC -dumpversion` |
158 |
gcc-fullversion() { |
159 |
echo "$($(tc-getCC) -dumpversion)" |
160 |
} |
161 |
# Returns the version, but only the <major>.<minor> |
162 |
gcc-version() { |
163 |
echo "$(gcc-fullversion | cut -f1,2 -d.)" |
164 |
} |
165 |
# Returns the Major version |
166 |
gcc-major-version() { |
167 |
echo "$(gcc-version | cut -f1 -d.)" |
168 |
} |
169 |
# Returns the Minor version |
170 |
gcc-minor-version() { |
171 |
echo "$(gcc-version | cut -f2 -d.)" |
172 |
} |
173 |
# Returns the Micro version |
174 |
gcc-micro-version() { |
175 |
echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
176 |
} |