| 1 | # Copyright 1999-2005 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.1.1.1 2005/11/30 09:59:25 chriswhite 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 |
| … | |
… | |
| 33 | tc-getAR() { tc-getPROG AR ar "$@"; } |
33 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 34 | # Returns the name of the assembler |
34 | # Returns the name of the assembler |
| 35 | tc-getAS() { tc-getPROG AS as "$@"; } |
35 | tc-getAS() { tc-getPROG AS as "$@"; } |
| 36 | # Returns the name of the C compiler |
36 | # Returns the name of the C compiler |
| 37 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
37 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
38 | # Returns the name of the C preprocessor |
|
|
39 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
| 38 | # Returns the name of the C++ compiler |
40 | # Returns the name of the C++ compiler |
| 39 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
41 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 40 | # Returns the name of the linker |
42 | # Returns the name of the linker |
| 41 | tc-getLD() { tc-getPROG LD ld "$@"; } |
43 | tc-getLD() { tc-getPROG LD ld "$@"; } |
|
|
44 | # Returns the name of the strip prog |
|
|
45 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
| 42 | # Returns the name of the symbol/object thingy |
46 | # Returns the name of the symbol/object thingy |
| 43 | tc-getNM() { tc-getPROG NM nm "$@"; } |
47 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 44 | # Returns the name of the archiver indexer |
48 | # Returns the name of the archiver indexer |
| 45 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
49 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
|
|
50 | # Returns the name of the fortran 77 compiler |
|
|
51 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
|
|
52 | # Returns the name of the fortran 90 compiler |
|
|
53 | tc-getF90() { tc-getPROG F90 gfortran "$@"; } |
| 46 | # Returns the name of the fortran compiler |
54 | # Returns the name of the fortran compiler |
| 47 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
55 | tc-getFORTRAN() { tc-getPROG FORTRAN gfortran "$@"; } |
| 48 | # Returns the name of the java compiler |
56 | # Returns the name of the java compiler |
| 49 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
57 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 50 | |
58 | |
| 51 | # Returns the name of the C compiler for build |
59 | # Returns the name of the C compiler for build |
| 52 | tc-getBUILD_CC() { |
60 | tc-getBUILD_CC() { |
| … | |
… | |
| 81 | # 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 ... |
| 82 | tc-is-cross-compiler() { |
90 | tc-is-cross-compiler() { |
| 83 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
91 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 84 | } |
92 | } |
| 85 | |
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 | } |
| 86 | |
113 | |
| 87 | # Parse information from CBUILD/CHOST/CTARGET rather than |
114 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 88 | # use external variables from the profile. |
115 | # use external variables from the profile. |
| 89 | tc-ninja_magic_to_arch() { |
116 | tc-ninja_magic_to_arch() { |
| 90 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
117 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| … | |
… | |
| 94 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
121 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 95 | |
122 | |
| 96 | case ${host} in |
123 | case ${host} in |
| 97 | alpha*) echo alpha;; |
124 | alpha*) echo alpha;; |
| 98 | arm*) echo arm;; |
125 | arm*) echo arm;; |
|
|
126 | bfin*) ninj blackfin bfin;; |
| 99 | cris*) echo cris;; |
127 | cris*) echo cris;; |
| 100 | hppa*) ninj parisc hppa;; |
128 | hppa*) ninj parisc hppa;; |
| 101 | i?86*) ninj i386 x86;; |
129 | i?86*) ninj i386 x86;; |
| 102 | ia64*) echo ia64;; |
130 | ia64*) echo ia64;; |
| 103 | m68*) echo m68k;; |
131 | m68*) echo m68k;; |
| 104 | mips*) echo mips;; |
132 | mips*) echo mips;; |
| 105 | powerpc64*) echo ppc64;; |
133 | nios2*) echo nios2;; |
|
|
134 | nios*) echo nios;; |
|
|
135 | powerpc*) |
|
|
136 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
|
|
137 | # have been unified into simply 'powerpc', but until 2.6.16, |
|
|
138 | # ppc32 is still using ARCH="ppc" as default |
|
|
139 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
|
|
140 | echo powerpc |
|
|
141 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
|
|
142 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
|
|
143 | echo powerpc |
|
|
144 | else |
|
|
145 | echo ppc |
|
|
146 | fi |
|
|
147 | elif [[ ${host} == powerpc64* ]] ; then |
|
|
148 | echo ppc64 |
| 106 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
149 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 107 | && ninj ppc64 ppc \ |
150 | ninj ppc64 ppc |
|
|
151 | else |
| 108 | || echo ppc |
152 | echo ppc |
|
|
153 | fi |
| 109 | ;; |
154 | ;; |
| 110 | s390*) echo s390;; |
155 | s390*) echo s390;; |
| 111 | sh64*) ninj sh64 sh;; |
156 | sh64*) ninj sh64 sh;; |
| 112 | sh*) echo sh;; |
157 | sh*) echo sh;; |
| 113 | sparc64*) ninj sparc64 sparc;; |
158 | sparc64*) ninj sparc64 sparc;; |
| … | |
… | |
| 124 | tc-ninja_magic_to_arch kern $@ |
169 | tc-ninja_magic_to_arch kern $@ |
| 125 | } |
170 | } |
| 126 | tc-arch() { |
171 | tc-arch() { |
| 127 | tc-ninja_magic_to_arch portage $@ |
172 | tc-ninja_magic_to_arch portage $@ |
| 128 | } |
173 | } |
| 129 | tc-endian() { |
|
|
| 130 | local host=$1 |
|
|
| 131 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
| 132 | host=${host%%-*} |
|
|
| 133 | |
|
|
| 134 | case ${host} in |
|
|
| 135 | alpha*) echo big;; |
|
|
| 136 | arm*b*) echo big;; |
|
|
| 137 | arm*) echo little;; |
|
|
| 138 | cris*) echo little;; |
|
|
| 139 | hppa*) echo big;; |
|
|
| 140 | i?86*) echo little;; |
|
|
| 141 | ia64*) echo little;; |
|
|
| 142 | m68*) echo big;; |
|
|
| 143 | mips*l*) echo little;; |
|
|
| 144 | mips*) echo big;; |
|
|
| 145 | powerpc*) echo big;; |
|
|
| 146 | s390*) echo big;; |
|
|
| 147 | sh*b*) echo big;; |
|
|
| 148 | sh*) echo little;; |
|
|
| 149 | sparc*) echo big;; |
|
|
| 150 | x86_64*) echo little;; |
|
|
| 151 | *) echo wtf;; |
|
|
| 152 | esac |
|
|
| 153 | } |
|
|
| 154 | |
174 | |
| 155 | # Returns the version as by `$CC -dumpversion` |
175 | # Returns the version as by `$CC -dumpversion` |
| 156 | gcc-fullversion() { |
176 | gcc-fullversion() { |
| 157 | echo "$($(tc-getCC) -dumpversion)" |
177 | $(tc-getCC "$@") -dumpversion |
| 158 | } |
178 | } |
| 159 | # Returns the version, but only the <major>.<minor> |
179 | # Returns the version, but only the <major>.<minor> |
| 160 | gcc-version() { |
180 | gcc-version() { |
| 161 | echo "$(gcc-fullversion | cut -f1,2 -d.)" |
181 | gcc-fullversion "$@" | cut -f1,2 -d. |
| 162 | } |
182 | } |
| 163 | # Returns the Major version |
183 | # Returns the Major version |
| 164 | gcc-major-version() { |
184 | gcc-major-version() { |
| 165 | echo "$(gcc-version | cut -f1 -d.)" |
185 | gcc-version "$@" | cut -f1 -d. |
| 166 | } |
186 | } |
| 167 | # Returns the Minor version |
187 | # Returns the Minor version |
| 168 | gcc-minor-version() { |
188 | gcc-minor-version() { |
| 169 | echo "$(gcc-version | cut -f2 -d.)" |
189 | gcc-version "$@" | cut -f2 -d. |
| 170 | } |
190 | } |
| 171 | # Returns the Micro version |
191 | # Returns the Micro version |
| 172 | gcc-micro-version() { |
192 | gcc-micro-version() { |
| 173 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
193 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
| 174 | } |
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 | } |
| 175 | |
206 | |
| 176 | # Returns requested gcc specs directive |
207 | # Returns requested gcc specs directive unprocessed - for used by |
|
|
208 | # gcc-specs-directive() |
| 177 | # Note; later specs normally overwrite earlier ones; however if a later |
209 | # Note; later specs normally overwrite earlier ones; however if a later |
| 178 | # spec starts with '+' then it appends. |
210 | # spec starts with '+' then it appends. |
| 179 | # 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" |
| 180 | # 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. |
| 181 | gcc-specs-directive() { |
217 | _gcc-specs-directive_raw() { |
|
|
218 | local cc=$(tc-getCC) |
| 182 | local specfiles=$($(tc-getCC) -v 2>&1 | awk '$1=="Reading" {print $NF}') |
219 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 183 | $(tc-getCC) -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
220 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 184 | 'BEGIN { pspec=""; spec=""; outside=1 } |
221 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 185 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
222 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| 186 | 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 } |
| 187 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
224 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
| 188 | { spec=spec $0 } |
225 | { spec=spec $0 } |
| 189 | END { print spec }' |
226 | END { print spec }' |
| 190 | return 0 |
227 | return 0 |
| 191 | } |
228 | } |
| 192 | |
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}" |
|
|
245 | return 0 |
|
|
246 | } |
|
|
247 | |
| 193 | # Returns true if gcc sets relro |
248 | # Returns true if gcc sets relro |
| 194 | gcc-specs-relro() { |
249 | gcc-specs-relro() { |
| 195 | local directive |
250 | local directive |
| 196 | directive=$(gcc-specs-directive link_command) |
251 | directive=$(gcc-specs-directive link_command) |
| 197 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
252 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
| … | |
… | |
| 218 | gcc-specs-ssp-to-all() { |
273 | gcc-specs-ssp-to-all() { |
| 219 | local directive |
274 | local directive |
| 220 | directive=$(gcc-specs-directive cc1) |
275 | directive=$(gcc-specs-directive cc1) |
| 221 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
276 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
| 222 | } |
277 | } |
|
|
278 | |
|
|
279 | |
|
|
280 | # This function generate linker scripts in /usr/lib for dynamic |
|
|
281 | # libs in /lib. This is to fix linking problems when you have |
|
|
282 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
|
|
283 | # in some cases when linking dynamic, the .a in /usr/lib is used |
|
|
284 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
|
|
285 | # library search path. This cause many builds to fail. |
|
|
286 | # See bug #4411 for more info. |
|
|
287 | # |
|
|
288 | # To use, simply call: |
|
|
289 | # |
|
|
290 | # gen_usr_ldscript libfoo.so |
|
|
291 | # |
|
|
292 | # Note that you should in general use the unversioned name of |
|
|
293 | # the library, as ldconfig should usually update it correctly |
|
|
294 | # to point to the latest version of the library present. |
|
|
295 | _tc_gen_usr_ldscript() { |
|
|
296 | local lib libdir=$(get_libdir) output_format="" |
|
|
297 | # Just make sure it exists |
|
|
298 | dodir /usr/${libdir} |
|
|
299 | |
|
|
300 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
|
|
301 | # is referenced ... makes multilib saner |
|
|
302 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
|
|
303 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
|
|
304 | |
|
|
305 | for lib in "$@" ; do |
|
|
306 | if [[ ${USERLAND} == "Darwin" ]] ; then |
|
|
307 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
|
|
308 | ewarn "making a symlink instead." |
|
|
309 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
|
|
310 | else |
|
|
311 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
|
|
312 | /* GNU ld script |
|
|
313 | Since Gentoo has critical dynamic libraries |
|
|
314 | in /lib, and the static versions in /usr/lib, |
|
|
315 | we need to have a "fake" dynamic lib in /usr/lib, |
|
|
316 | otherwise we run into linking problems. |
|
|
317 | |
|
|
318 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
319 | */ |
|
|
320 | ${output_format} |
|
|
321 | GROUP ( /${libdir}/${lib} ) |
|
|
322 | END_LDSCRIPT |
|
|
323 | fi |
|
|
324 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
|
|
325 | done |
|
|
326 | } |
|
|
327 | gen_usr_ldscript() { _tc_gen_usr_ldscript "$@" ; } |