| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2007 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.63 2006/12/16 10:31:12 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.68 2007/03/15 15:55:59 kevquinn Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Toolchain Ninjas <toolchain@gentoo.org> |
5 | # Maintainer: Toolchain Ninjas <toolchain@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 multilib |
10 | inherit multilib |
| … | |
… | |
| 89 | # A simple way to see if we're using a cross-compiler ... |
89 | # A simple way to see if we're using a cross-compiler ... |
| 90 | tc-is-cross-compiler() { |
90 | tc-is-cross-compiler() { |
| 91 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
91 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 92 | } |
92 | } |
| 93 | |
93 | |
|
|
94 | # See if this toolchain is a softfloat based one. |
|
|
95 | # The possible return values: |
|
|
96 | # - only: the target is always softfloat (never had fpu) |
|
|
97 | # - yes: the target should support softfloat |
|
|
98 | # - no: the target should support hardfloat |
|
|
99 | # This allows us to react differently where packages accept |
|
|
100 | # softfloat flags in the case where support is optional, but |
|
|
101 | # rejects softfloat flags where the target always lacks an fpu. |
|
|
102 | tc-is-softfloat() { |
|
|
103 | case ${CTARGET} in |
|
|
104 | bfin*|h8300*) |
|
|
105 | echo "only" ;; |
|
|
106 | *) |
|
|
107 | [[ ${CTARGET//_/-} == *-softfloat-* ]] \ |
|
|
108 | && echo "yes" \ |
|
|
109 | || echo "no" |
|
|
110 | ;; |
|
|
111 | esac |
|
|
112 | } |
| 94 | |
113 | |
| 95 | # Parse information from CBUILD/CHOST/CTARGET rather than |
114 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 96 | # use external variables from the profile. |
115 | # use external variables from the profile. |
| 97 | tc-ninja_magic_to_arch() { |
116 | tc-ninja_magic_to_arch() { |
| 98 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
117 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| … | |
… | |
| 150 | tc-ninja_magic_to_arch kern $@ |
169 | tc-ninja_magic_to_arch kern $@ |
| 151 | } |
170 | } |
| 152 | tc-arch() { |
171 | tc-arch() { |
| 153 | tc-ninja_magic_to_arch portage $@ |
172 | tc-ninja_magic_to_arch portage $@ |
| 154 | } |
173 | } |
| 155 | tc-endian() { |
|
|
| 156 | local host=$1 |
|
|
| 157 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
| 158 | host=${host%%-*} |
|
|
| 159 | |
|
|
| 160 | case ${host} in |
|
|
| 161 | alpha*) echo big;; |
|
|
| 162 | arm*b*) echo big;; |
|
|
| 163 | arm*) echo little;; |
|
|
| 164 | cris*) echo little;; |
|
|
| 165 | hppa*) echo big;; |
|
|
| 166 | i?86*) echo little;; |
|
|
| 167 | ia64*) echo little;; |
|
|
| 168 | m68*) echo big;; |
|
|
| 169 | mips*l*) echo little;; |
|
|
| 170 | mips*) echo big;; |
|
|
| 171 | powerpc*) echo big;; |
|
|
| 172 | s390*) echo big;; |
|
|
| 173 | sh*b*) echo big;; |
|
|
| 174 | sh*) echo little;; |
|
|
| 175 | sparc*) echo big;; |
|
|
| 176 | x86_64*) echo little;; |
|
|
| 177 | *) echo wtf;; |
|
|
| 178 | esac |
|
|
| 179 | } |
|
|
| 180 | |
174 | |
| 181 | # Returns the version as by `$CC -dumpversion` |
175 | # Returns the version as by `$CC -dumpversion` |
| 182 | gcc-fullversion() { |
176 | gcc-fullversion() { |
| 183 | $(tc-getCC "$@") -dumpversion |
177 | $(tc-getCC "$@") -dumpversion |
| 184 | } |
178 | } |
| … | |
… | |
| 196 | } |
190 | } |
| 197 | # Returns the Micro version |
191 | # Returns the Micro version |
| 198 | gcc-micro-version() { |
192 | gcc-micro-version() { |
| 199 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
193 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
| 200 | } |
194 | } |
|
|
195 | # Returns the installation directory - internal toolchain |
|
|
196 | # function for use by _gcc-specs-exists (for flag-o-matic). |
|
|
197 | _gcc-install-dir() { |
|
|
198 | echo "$($(tc-getCC) -print-search-dirs 2> /dev/null |\ |
|
|
199 | awk '$1=="install:" {print $2}')" |
|
|
200 | } |
|
|
201 | # Returns true if the indicated specs file exists - internal toolchain |
|
|
202 | # function for use by flag-o-matic. |
|
|
203 | _gcc-specs-exists() { |
|
|
204 | [[ -f $(_gcc-install-dir)/$1 ]] |
|
|
205 | } |
| 201 | |
206 | |
| 202 | # Returns requested gcc specs directive |
207 | # Returns requested gcc specs directive unprocessed - for used by |
|
|
208 | # gcc-specs-directive() |
| 203 | # Note; later specs normally overwrite earlier ones; however if a later |
209 | # Note; later specs normally overwrite earlier ones; however if a later |
| 204 | # spec starts with '+' then it appends. |
210 | # spec starts with '+' then it appends. |
| 205 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
211 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
| 206 | # as "Reading <file>", in order. |
212 | # as "Reading <file>", in order. Strictly speaking, if there's a |
|
|
213 | # $(gcc_install_dir)/specs, the built-in specs aren't read, however by |
|
|
214 | # the same token anything from 'gcc -dumpspecs' is overridden by |
|
|
215 | # the contents of $(gcc_install_dir)/specs so the result is the |
|
|
216 | # same either way. |
| 207 | gcc-specs-directive() { |
217 | _gcc-specs-directive_raw() { |
| 208 | local cc=$(tc-getCC) |
218 | local cc=$(tc-getCC) |
| 209 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
219 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 210 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
220 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 211 | 'BEGIN { pspec=""; spec=""; outside=1 } |
221 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 212 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
222 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| 213 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
223 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
| 214 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
224 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
| 215 | { spec=spec $0 } |
225 | { spec=spec $0 } |
| 216 | END { print spec }' |
226 | END { print spec }' |
|
|
227 | return 0 |
|
|
228 | } |
|
|
229 | |
|
|
230 | # Return the requested gcc specs directive, with all included |
|
|
231 | # specs expanded. |
|
|
232 | # Note, it does not check for inclusion loops, which cause it |
|
|
233 | # to never finish - but such loops are invalid for gcc and we're |
|
|
234 | # assuming gcc is operational. |
|
|
235 | gcc-specs-directive() { |
|
|
236 | local directive subdname subdirective |
|
|
237 | directive="$(_gcc-specs-directive_raw $1)" |
|
|
238 | while [[ ${directive} == *%\(*\)* ]]; do |
|
|
239 | subdname=${directive/*%\(} |
|
|
240 | subdname=${subdname/\)*} |
|
|
241 | subdirective="$(_gcc-specs-directive_raw ${subdname})" |
|
|
242 | directive="${directive//\%(${subdname})/${subdirective}}" |
|
|
243 | done |
|
|
244 | echo "${directive}" |
| 217 | return 0 |
245 | return 0 |
| 218 | } |
246 | } |
| 219 | |
247 | |
| 220 | # Returns true if gcc sets relro |
248 | # Returns true if gcc sets relro |
| 221 | gcc-specs-relro() { |
249 | gcc-specs-relro() { |