| 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.32 2005/03/04 12:37:55 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.43 2005/09/15 00:13:10 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 | ECLASS=toolchain-funcs |
10 | inherit multilib |
| 11 | INHERITED="$INHERITED $ECLASS" |
|
|
| 12 | |
11 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
12 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 14 | |
13 | |
| 15 | tc-getPROG() { |
14 | tc-getPROG() { |
| 16 | local var=${1} |
15 | local var=$1 |
| 17 | local prog=${2} |
16 | local prog=$2 |
| 18 | |
17 | |
| 19 | if [[ -n ${!var} ]] ; then |
18 | if [[ -n ${!var} ]] ; then |
| 20 | echo "${!var}" |
19 | echo "${!var}" |
| 21 | return 0 |
20 | return 0 |
| 22 | fi |
21 | fi |
| 23 | |
22 | |
| 24 | if [[ -n ${3} ]] ; then |
23 | local search= |
| 25 | local search=$(type -p "${3}-${prog}") |
24 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
|
|
25 | [[ -z ${search} && -n $(get_abi_CHOST) ]] && search=$(type -p "$(get_abi_CHOST)-${prog}") |
|
|
26 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
| 26 | [[ -n ${search} ]] && prog=${search##*/} |
27 | [[ -n ${search} ]] && prog=${search##*/} |
| 27 | elif [[ -n ${CHOST} ]] ; then |
|
|
| 28 | local search=$(type -p "${CHOST}-${prog}") |
|
|
| 29 | [[ -n ${search} ]] && prog=${search##*/} |
|
|
| 30 | fi |
|
|
| 31 | |
28 | |
| 32 | export ${var}=${prog} |
29 | export ${var}=${prog} |
| 33 | echo "${!var}" |
30 | echo "${!var}" |
| 34 | } |
31 | } |
| 35 | |
32 | |
| 36 | # Returns the name of the archiver |
33 | # Returns the name of the archiver |
| 37 | tc-getAR() { tc-getPROG AR ar "${@}"; } |
34 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 38 | # Returns the name of the assembler |
35 | # Returns the name of the assembler |
| 39 | tc-getAS() { tc-getPROG AS as "${@}"; } |
36 | tc-getAS() { tc-getPROG AS as "$@"; } |
| 40 | # Returns the name of the C compiler |
37 | # Returns the name of the C compiler |
| 41 | tc-getCC() { tc-getPROG CC gcc "${@}"; } |
38 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
| 42 | # Returns the name of the C++ compiler |
39 | # Returns the name of the C++ compiler |
| 43 | tc-getCXX() { tc-getPROG CXX g++ "${@}"; } |
40 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 44 | # Returns the name of the linker |
41 | # Returns the name of the linker |
| 45 | tc-getLD() { tc-getPROG LD ld "${@}"; } |
42 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 46 | # Returns the name of the symbol/object thingy |
43 | # Returns the name of the symbol/object thingy |
| 47 | tc-getNM() { tc-getPROG NM nm "${@}"; } |
44 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 48 | # Returns the name of the archiver indexer |
45 | # Returns the name of the archiver indexer |
| 49 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "${@}"; } |
46 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
| 50 | # Returns the name of the fortran compiler |
47 | # Returns the name of the fortran compiler |
| 51 | tc-getF77() { tc-getPROG F77 f77 "${@}"; } |
48 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
| 52 | # Returns the name of the java compiler |
49 | # Returns the name of the java compiler |
| 53 | tc-getGCJ() { tc-getPROG GCJ gcj "${@}"; } |
50 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 54 | |
51 | |
| 55 | # Returns the name of the C compiler for build |
52 | # Returns the name of the C compiler for build |
| 56 | tc-getBUILD_CC() { |
53 | tc-getBUILD_CC() { |
|
|
54 | local v |
|
|
55 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
| 57 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
56 | if [[ -n ${!v} ]] ; then |
| 58 | export BUILD_CC=${CC_FOR_BUILD} |
57 | export BUILD_CC=${!v} |
| 59 | echo "${CC_FOR_BUILD}" |
58 | echo "${!v}" |
| 60 | return 0 |
59 | return 0 |
| 61 | fi |
60 | fi |
|
|
61 | done |
| 62 | |
62 | |
| 63 | local search= |
63 | local search= |
| 64 | if [[ -n ${CBUILD} ]] ; then |
64 | if [[ -n ${CBUILD} ]] ; then |
| 65 | search=$(type -p ${CBUILD}-gcc) |
65 | search=$(type -p ${CBUILD}-gcc) |
| 66 | search=${search##*/} |
66 | search=${search##*/} |
| … | |
… | |
| 74 | |
74 | |
| 75 | # Quick way to export a bunch of vars at once |
75 | # Quick way to export a bunch of vars at once |
| 76 | tc-export() { |
76 | tc-export() { |
| 77 | local var |
77 | local var |
| 78 | for var in "$@" ; do |
78 | for var in "$@" ; do |
| 79 | eval tc-get${var} |
79 | eval tc-get${var} > /dev/null |
| 80 | done |
80 | done |
| 81 | } |
81 | } |
| 82 | |
82 | |
| 83 | # A simple way to see if we're using a cross-compiler ... |
83 | # A simple way to see if we're using a cross-compiler ... |
| 84 | tc-is-cross-compiler() { |
84 | tc-is-cross-compiler() { |
| 85 | if [[ -n ${CBUILD} ]] ; then |
|
|
| 86 | return $([[ ${CBUILD} != ${CHOST} ]]) |
85 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 87 | fi |
|
|
| 88 | return 1 |
|
|
| 89 | } |
86 | } |
| 90 | |
87 | |
| 91 | |
88 | |
| 92 | # Parse information from CBUILD/CHOST/CTARGET rather than |
89 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 93 | # use external variables from the profile. |
90 | # use external variables from the profile. |
| 94 | tc-ninja_magic_to_arch() { |
91 | tc-ninja_magic_to_arch() { |
| 95 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
92 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 96 | |
93 | |
| 97 | local type=$1 |
94 | local type=$1 |
| … | |
… | |
| 105 | hppa*) ninj parisc hppa;; |
102 | hppa*) ninj parisc hppa;; |
| 106 | ia64*) echo ia64;; |
103 | ia64*) echo ia64;; |
| 107 | m68*) echo m68k;; |
104 | m68*) echo m68k;; |
| 108 | mips*) echo mips;; |
105 | mips*) echo mips;; |
| 109 | powerpc64*) echo ppc64;; |
106 | powerpc64*) echo ppc64;; |
| 110 | powerpc*) echo ppc;; |
107 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
|
|
108 | && ninj ppc64 ppc \ |
|
|
109 | || echo ppc |
|
|
110 | ;; |
| 111 | sparc64*) ninj sparc64 sparc;; |
111 | sparc64*) ninj sparc64 sparc;; |
| 112 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
112 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 113 | && ninj sparc64 sparc \ |
113 | && ninj sparc64 sparc \ |
| 114 | || echo sparc |
114 | || echo sparc |
| 115 | ;; |
115 | ;; |
| … | |
… | |
| 169 | } |
169 | } |
| 170 | # Returns the Micro version |
170 | # Returns the Micro version |
| 171 | gcc-micro-version() { |
171 | gcc-micro-version() { |
| 172 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
172 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 173 | } |
173 | } |
|
|
174 | |
|
|
175 | # Returns requested gcc specs directive |
|
|
176 | # Note; if a spec exists more than once (e.g. in more than one specs file) |
|
|
177 | # the last one read is the active definition - i.e. they do not accumulate, |
|
|
178 | # each new definition replaces any previous definition. |
|
|
179 | gcc-specs-directive() { |
|
|
180 | local specfiles=$($(tc-getCC) -v 2>&1 | grep "^Reading" | awk '{print $NF}') |
|
|
181 | [[ -z ${specfiles} ]] && return 0 |
|
|
182 | awk -v spec=$1 \ |
|
|
183 | 'BEGIN { sstr=""; outside=1 } |
|
|
184 | $1=="*"spec":" { sstr=""; outside=0; next } |
|
|
185 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
|
|
186 | { sstr=sstr $0 } |
|
|
187 | END { print sstr }' ${specfiles} |
|
|
188 | } |
|
|
189 | |
|
|
190 | # Returns true if gcc sets relro |
|
|
191 | gcc-specs-relro() { |
|
|
192 | local directive |
|
|
193 | directive=$(gcc-specs-directive link_command) |
|
|
194 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
|
|
195 | } |
|
|
196 | # Returns true if gcc sets now |
|
|
197 | gcc-specs-now() { |
|
|
198 | local directive |
|
|
199 | directive=$(gcc-specs-directive link_command) |
|
|
200 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
|
|
201 | } |
|
|
202 | # Returns true if gcc builds PIEs |
|
|
203 | gcc-specs-pie() { |
|
|
204 | local directive |
|
|
205 | directive=$(gcc-specs-directive cc1) |
|
|
206 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
|
|
207 | } |
|
|
208 | # Returns true if gcc builds with the stack protector |
|
|
209 | gcc-specs-ssp() { |
|
|
210 | local directive |
|
|
211 | directive=$(gcc-specs-directive cc1) |
|
|
212 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
|
|
213 | } |