| 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.64 2007/01/07 11:39:08 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.71 2007/07/11 04:06:29 robbat2 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 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
|
|
11 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
| 11 | |
12 | |
| 12 | DESCRIPTION="Based on the ${ECLASS} eclass" |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 13 | |
14 | |
| 14 | tc-getPROG() { |
15 | tc-getPROG() { |
| 15 | local var=$1 |
16 | local var=$1 |
| … | |
… | |
| 89 | # A simple way to see if we're using a cross-compiler ... |
90 | # A simple way to see if we're using a cross-compiler ... |
| 90 | tc-is-cross-compiler() { |
91 | tc-is-cross-compiler() { |
| 91 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
92 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 92 | } |
93 | } |
| 93 | |
94 | |
|
|
95 | # See if this toolchain is a softfloat based one. |
|
|
96 | # The possible return values: |
|
|
97 | # - only: the target is always softfloat (never had fpu) |
|
|
98 | # - yes: the target should support softfloat |
|
|
99 | # - no: the target should support hardfloat |
|
|
100 | # This allows us to react differently where packages accept |
|
|
101 | # softfloat flags in the case where support is optional, but |
|
|
102 | # rejects softfloat flags where the target always lacks an fpu. |
|
|
103 | tc-is-softfloat() { |
|
|
104 | case ${CTARGET} in |
|
|
105 | bfin*|h8300*) |
|
|
106 | echo "only" ;; |
|
|
107 | *) |
|
|
108 | [[ ${CTARGET//_/-} == *-softfloat-* ]] \ |
|
|
109 | && echo "yes" \ |
|
|
110 | || echo "no" |
|
|
111 | ;; |
|
|
112 | esac |
|
|
113 | } |
| 94 | |
114 | |
| 95 | # Parse information from CBUILD/CHOST/CTARGET rather than |
115 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 96 | # use external variables from the profile. |
116 | # use external variables from the profile. |
| 97 | tc-ninja_magic_to_arch() { |
117 | tc-ninja_magic_to_arch() { |
| 98 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
118 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| … | |
… | |
| 150 | tc-ninja_magic_to_arch kern $@ |
170 | tc-ninja_magic_to_arch kern $@ |
| 151 | } |
171 | } |
| 152 | tc-arch() { |
172 | tc-arch() { |
| 153 | tc-ninja_magic_to_arch portage $@ |
173 | tc-ninja_magic_to_arch portage $@ |
| 154 | } |
174 | } |
|
|
175 | tc-endian() { |
|
|
176 | local host=$1 |
|
|
177 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
178 | host=${host%%-*} |
|
|
179 | |
|
|
180 | case ${host} in |
|
|
181 | alpha*) echo big;; |
|
|
182 | arm*b*) echo big;; |
|
|
183 | arm*) echo little;; |
|
|
184 | cris*) echo little;; |
|
|
185 | hppa*) echo big;; |
|
|
186 | i?86*) echo little;; |
|
|
187 | ia64*) echo little;; |
|
|
188 | m68*) echo big;; |
|
|
189 | mips*l*) echo little;; |
|
|
190 | mips*) echo big;; |
|
|
191 | powerpc*) echo big;; |
|
|
192 | s390*) echo big;; |
|
|
193 | sh*b*) echo big;; |
|
|
194 | sh*) echo little;; |
|
|
195 | sparc*) echo big;; |
|
|
196 | x86_64*) echo little;; |
|
|
197 | *) echo wtf;; |
|
|
198 | esac |
|
|
199 | } |
| 155 | |
200 | |
| 156 | # Returns the version as by `$CC -dumpversion` |
201 | # Returns the version as by `$CC -dumpversion` |
| 157 | gcc-fullversion() { |
202 | gcc-fullversion() { |
| 158 | $(tc-getCC "$@") -dumpversion |
203 | $(tc-getCC "$@") -dumpversion |
| 159 | } |
204 | } |
| … | |
… | |
| 171 | } |
216 | } |
| 172 | # Returns the Micro version |
217 | # Returns the Micro version |
| 173 | gcc-micro-version() { |
218 | gcc-micro-version() { |
| 174 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
219 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
| 175 | } |
220 | } |
|
|
221 | # Returns the installation directory - internal toolchain |
|
|
222 | # function for use by _gcc-specs-exists (for flag-o-matic). |
|
|
223 | _gcc-install-dir() { |
|
|
224 | echo "$($(tc-getCC) -print-search-dirs 2> /dev/null |\ |
|
|
225 | awk '$1=="install:" {print $2}')" |
|
|
226 | } |
|
|
227 | # Returns true if the indicated specs file exists - internal toolchain |
|
|
228 | # function for use by flag-o-matic. |
|
|
229 | _gcc-specs-exists() { |
|
|
230 | [[ -f $(_gcc-install-dir)/$1 ]] |
|
|
231 | } |
| 176 | |
232 | |
| 177 | # Returns requested gcc specs directive |
233 | # Returns requested gcc specs directive unprocessed - for used by |
|
|
234 | # gcc-specs-directive() |
| 178 | # Note; later specs normally overwrite earlier ones; however if a later |
235 | # Note; later specs normally overwrite earlier ones; however if a later |
| 179 | # spec starts with '+' then it appends. |
236 | # spec starts with '+' then it appends. |
| 180 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
237 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
| 181 | # as "Reading <file>", in order. |
238 | # as "Reading <file>", in order. Strictly speaking, if there's a |
|
|
239 | # $(gcc_install_dir)/specs, the built-in specs aren't read, however by |
|
|
240 | # the same token anything from 'gcc -dumpspecs' is overridden by |
|
|
241 | # the contents of $(gcc_install_dir)/specs so the result is the |
|
|
242 | # same either way. |
| 182 | gcc-specs-directive() { |
243 | _gcc-specs-directive_raw() { |
| 183 | local cc=$(tc-getCC) |
244 | local cc=$(tc-getCC) |
| 184 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
245 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 185 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
246 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 186 | 'BEGIN { pspec=""; spec=""; outside=1 } |
247 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 187 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
248 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| … | |
… | |
| 190 | { spec=spec $0 } |
251 | { spec=spec $0 } |
| 191 | END { print spec }' |
252 | END { print spec }' |
| 192 | return 0 |
253 | return 0 |
| 193 | } |
254 | } |
| 194 | |
255 | |
|
|
256 | # Return the requested gcc specs directive, with all included |
|
|
257 | # specs expanded. |
|
|
258 | # Note, it does not check for inclusion loops, which cause it |
|
|
259 | # to never finish - but such loops are invalid for gcc and we're |
|
|
260 | # assuming gcc is operational. |
|
|
261 | gcc-specs-directive() { |
|
|
262 | local directive subdname subdirective |
|
|
263 | directive="$(_gcc-specs-directive_raw $1)" |
|
|
264 | while [[ ${directive} == *%\(*\)* ]]; do |
|
|
265 | subdname=${directive/*%\(} |
|
|
266 | subdname=${subdname/\)*} |
|
|
267 | subdirective="$(_gcc-specs-directive_raw ${subdname})" |
|
|
268 | directive="${directive//\%(${subdname})/${subdirective}}" |
|
|
269 | done |
|
|
270 | echo "${directive}" |
|
|
271 | return 0 |
|
|
272 | } |
|
|
273 | |
| 195 | # Returns true if gcc sets relro |
274 | # Returns true if gcc sets relro |
| 196 | gcc-specs-relro() { |
275 | gcc-specs-relro() { |
| 197 | local directive |
276 | local directive |
| 198 | directive=$(gcc-specs-directive link_command) |
277 | directive=$(gcc-specs-directive link_command) |
| 199 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
278 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
| … | |
… | |
| 237 | # gen_usr_ldscript libfoo.so |
316 | # gen_usr_ldscript libfoo.so |
| 238 | # |
317 | # |
| 239 | # Note that you should in general use the unversioned name of |
318 | # Note that you should in general use the unversioned name of |
| 240 | # the library, as ldconfig should usually update it correctly |
319 | # the library, as ldconfig should usually update it correctly |
| 241 | # to point to the latest version of the library present. |
320 | # to point to the latest version of the library present. |
| 242 | _tc_gen_usr_ldscript() { |
321 | gen_usr_ldscript() { |
| 243 | local lib libdir=$(get_libdir) output_format="" |
322 | local lib libdir=$(get_libdir) output_format="" |
| 244 | # Just make sure it exists |
323 | # Just make sure it exists |
| 245 | dodir /usr/${libdir} |
324 | dodir /usr/${libdir} |
| 246 | |
325 | |
| 247 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
326 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
| … | |
… | |
| 269 | END_LDSCRIPT |
348 | END_LDSCRIPT |
| 270 | fi |
349 | fi |
| 271 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
350 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 272 | done |
351 | done |
| 273 | } |
352 | } |
| 274 | gen_usr_ldscript() { _tc_gen_usr_ldscript "$@" ; } |
|
|