1 |
# Copyright 1999-2004 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.15 2004/12/14 14:28:57 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 eutils |
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 |
local search="" |
21 |
|
22 |
if [ -n "${!var}" ] ; then |
23 |
echo "${!var}" |
24 |
return 0 |
25 |
fi |
26 |
|
27 |
if [ -n "${CTARGET}" ] ; then |
28 |
search="$(type -p "${CTARGET}-${prog}")" |
29 |
elif [ -n "${CHOST}" ] ; then |
30 |
search="$(type -p "${CHOST}-${prog}")" |
31 |
fi |
32 |
|
33 |
if [ -n "${search}" ] ; then |
34 |
prog="${search##*/}" |
35 |
fi |
36 |
export ${var}="${prog}" |
37 |
echo "${!var}" |
38 |
} |
39 |
|
40 |
# Returns the name of the archiver |
41 |
tc-getAR() { tc-getPROG AR ar; } |
42 |
# Returns the name of the assembler |
43 |
tc-getAS() { tc-getPROG AS as; } |
44 |
# Returns the name of the C compiler |
45 |
tc-getCC() { tc-getPROG CC gcc; } |
46 |
# Returns the name of the C++ compiler |
47 |
tc-getCXX() { tc-getPROG CXX g++; } |
48 |
# Returns the name of the linker |
49 |
tc-getLD() { tc-getPROG LD ld; } |
50 |
# Returns the name of the symbol/object thingy |
51 |
tc-getNM() { tc-getPROG NM nm; } |
52 |
# Returns the name of the archiver indexer |
53 |
tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
54 |
# Returns the name of the fortran compiler |
55 |
tc-getF77() { tc-getPROG F77 f77; } |
56 |
# Returns the name of the java compiler |
57 |
tc-getGCJ() { tc-getPROG GCJ gcj; } |
58 |
|
59 |
# Returns the name of the C compiler for build |
60 |
tc-getBUILD_CC() { |
61 |
if [ -n "${CC_FOR_BUILD}" ] ; then |
62 |
export BUILD_CC="${CC_FOR_BUILD}" |
63 |
echo "${CC_FOR_BUILD}" |
64 |
return 0 |
65 |
fi |
66 |
|
67 |
local search= |
68 |
if [ -n "${CBUILD}" ] ; then |
69 |
search="$(type -p "${CBUILD}-gcc")" |
70 |
fi |
71 |
|
72 |
if [ -n "${search}" ] ; then |
73 |
search="${search##*/}" |
74 |
else |
75 |
search="gcc" |
76 |
fi |
77 |
|
78 |
export BUILD_CC="${search}" |
79 |
echo "${search}" |
80 |
} |
81 |
|
82 |
# Quick way to export a bunch of vars at once |
83 |
tc-export() { |
84 |
local var |
85 |
for var in "$@" ; do |
86 |
eval tc-get${var} |
87 |
done |
88 |
} |
89 |
|
90 |
# A simple way to see if we're using a cross-compiler ... |
91 |
tc-is-cross-compiler() { |
92 |
if [[ -n ${CBUILD} ]] ; then |
93 |
return $([[ ${CBUILD} != ${CHOST} ]]) |
94 |
fi |
95 |
return 1 |
96 |
} |
97 |
|
98 |
|
99 |
# Returns the version as by `$CC -dumpversion` |
100 |
gcc-fullversion() { |
101 |
echo "$($(tc-getCC) -dumpversion)" |
102 |
} |
103 |
# Returns the version, but only the <major>.<minor> |
104 |
gcc-version() { |
105 |
echo "$(gcc-fullversion | cut -f1,2 -d.)" |
106 |
} |
107 |
# Returns the Major version |
108 |
gcc-major-version() { |
109 |
echo "$(gcc-version | cut -f1 -d.)" |
110 |
} |
111 |
# Returns the Minor version |
112 |
gcc-minor-version() { |
113 |
echo "$(gcc-version | cut -f2 -d.)" |
114 |
} |
115 |
# Returns the Micro version |
116 |
gcc-micro-version() { |
117 |
echo "$(gcc-fullversion | cut -f3 -d.)" |
118 |
} |