| 1 | # Copyright 1999-2007 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.99 2010/04/22 18:28:11 armin76 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.107 2011/09/12 21:42:08 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: toolchain-funcs.eclass |
5 | # @ECLASS: toolchain-funcs.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Toolchain Ninjas <toolchain@gentoo.org> |
7 | # Toolchain Ninjas <toolchain@gentoo.org> |
| 8 | # @BLURB: functions to query common info about the toolchain |
8 | # @BLURB: functions to query common info about the toolchain |
| … | |
… | |
| 16 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
16 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
| 17 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
17 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
| 18 | |
18 | |
| 19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 20 | |
20 | |
|
|
21 | # tc-getPROG <VAR [search vars]> <default> [tuple] |
| 21 | tc-getPROG() { |
22 | _tc-getPROG() { |
| 22 | local var=$1 |
23 | local tuple=$1 |
|
|
24 | local v var vars=$2 |
| 23 | local prog=$2 |
25 | local prog=$3 |
| 24 | |
26 | |
| 25 | if [[ -n ${!var} ]] ; then |
27 | var=${vars%% *} |
| 26 | echo "${!var}" |
28 | for v in ${vars} ; do |
| 27 | return 0 |
|
|
| 28 | fi |
|
|
| 29 | |
|
|
| 30 | local search= |
|
|
| 31 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
|
|
| 32 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
|
|
| 33 | [[ -n ${search} ]] && prog=${search##*/} |
|
|
| 34 | |
|
|
| 35 | export ${var}=${prog} |
|
|
| 36 | echo "${!var}" |
|
|
| 37 | } |
|
|
| 38 | |
|
|
| 39 | # @FUNCTION: tc-getAR |
|
|
| 40 | # @USAGE: [toolchain prefix] |
|
|
| 41 | # @RETURN: name of the archiver |
|
|
| 42 | tc-getAR() { tc-getPROG AR ar "$@"; } |
|
|
| 43 | # @FUNCTION: tc-getAS |
|
|
| 44 | # @USAGE: [toolchain prefix] |
|
|
| 45 | # @RETURN: name of the assembler |
|
|
| 46 | tc-getAS() { tc-getPROG AS as "$@"; } |
|
|
| 47 | # @FUNCTION: tc-getCC |
|
|
| 48 | # @USAGE: [toolchain prefix] |
|
|
| 49 | # @RETURN: name of the C compiler |
|
|
| 50 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
| 51 | # @FUNCTION: tc-getCPP |
|
|
| 52 | # @USAGE: [toolchain prefix] |
|
|
| 53 | # @RETURN: name of the C preprocessor |
|
|
| 54 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
| 55 | # @FUNCTION: tc-getCXX |
|
|
| 56 | # @USAGE: [toolchain prefix] |
|
|
| 57 | # @RETURN: name of the C++ compiler |
|
|
| 58 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
|
|
| 59 | # @FUNCTION: tc-getLD |
|
|
| 60 | # @USAGE: [toolchain prefix] |
|
|
| 61 | # @RETURN: name of the linker |
|
|
| 62 | tc-getLD() { tc-getPROG LD ld "$@"; } |
|
|
| 63 | # @FUNCTION: tc-getSTRIP |
|
|
| 64 | # @USAGE: [toolchain prefix] |
|
|
| 65 | # @RETURN: name of the strip program |
|
|
| 66 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
|
|
| 67 | # @FUNCTION: tc-getNM |
|
|
| 68 | # @USAGE: [toolchain prefix] |
|
|
| 69 | # @RETURN: name of the symbol/object thingy |
|
|
| 70 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
| 71 | # @FUNCTION: tc-getRANLIB |
|
|
| 72 | # @USAGE: [toolchain prefix] |
|
|
| 73 | # @RETURN: name of the archiver indexer |
|
|
| 74 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
|
|
| 75 | # @FUNCTION: tc-getOBJCOPY |
|
|
| 76 | # @USAGE: [toolchain prefix] |
|
|
| 77 | # @RETURN: name of the object copier |
|
|
| 78 | tc-getOBJCOPY() { tc-getPROG OBJCOPY objcopy "$@"; } |
|
|
| 79 | # @FUNCTION: tc-getF77 |
|
|
| 80 | # @USAGE: [toolchain prefix] |
|
|
| 81 | # @RETURN: name of the Fortran 77 compiler |
|
|
| 82 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
|
|
| 83 | # @FUNCTION: tc-getFC |
|
|
| 84 | # @USAGE: [toolchain prefix] |
|
|
| 85 | # @RETURN: name of the Fortran 90 compiler |
|
|
| 86 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
|
|
| 87 | # @FUNCTION: tc-getGCJ |
|
|
| 88 | # @USAGE: [toolchain prefix] |
|
|
| 89 | # @RETURN: name of the java compiler |
|
|
| 90 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
|
|
| 91 | # @FUNCTION: tc-getPKG_CONFIG |
|
|
| 92 | # @USAGE: [toolchain prefix] |
|
|
| 93 | # @RETURN: name of the pkg-config tool |
|
|
| 94 | tc-getPKG_CONFIG() { tc-getPROG PKG_CONFIG pkg-config "$@"; } |
|
|
| 95 | # @FUNCTION: tc-getRC |
|
|
| 96 | # @USAGE: [toolchain prefix] |
|
|
| 97 | # @RETURN: name of the Windows resource compiler |
|
|
| 98 | tc-getRC() { tc-getPROG RC windres "$@"; } |
|
|
| 99 | # @FUNCTION: tc-getDLLWRAP |
|
|
| 100 | # @USAGE: [toolchain prefix] |
|
|
| 101 | # @RETURN: name of the Windows dllwrap utility |
|
|
| 102 | tc-getDLLWRAP() { tc-getPROG DLLWRAP dllwrap "$@"; } |
|
|
| 103 | |
|
|
| 104 | # @FUNCTION: tc-getBUILD_CC |
|
|
| 105 | # @USAGE: [toolchain prefix] |
|
|
| 106 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
|
|
| 107 | tc-getBUILD_CC() { |
|
|
| 108 | local v |
|
|
| 109 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
|
|
| 110 | if [[ -n ${!v} ]] ; then |
29 | if [[ -n ${!v} ]] ; then |
| 111 | export BUILD_CC=${!v} |
30 | export ${var}="${!v}" |
| 112 | echo "${!v}" |
31 | echo "${!v}" |
| 113 | return 0 |
32 | return 0 |
| 114 | fi |
33 | fi |
| 115 | done |
34 | done |
| 116 | |
35 | |
| 117 | local search= |
36 | local search= |
| 118 | if [[ -n ${CBUILD} ]] ; then |
37 | [[ -n $4 ]] && search=$(type -p "$4-${prog}") |
| 119 | search=$(type -p ${CBUILD}-gcc) |
38 | [[ -z ${search} && -n ${!tuple} ]] && search=$(type -p "${!tuple}-${prog}") |
| 120 | search=${search##*/} |
39 | [[ -n ${search} ]] && prog=${search##*/} |
| 121 | fi |
|
|
| 122 | search=${search:-gcc} |
|
|
| 123 | |
40 | |
| 124 | export BUILD_CC=${search} |
41 | export ${var}=${prog} |
| 125 | echo "${search}" |
42 | echo "${!var}" |
| 126 | } |
43 | } |
|
|
44 | tc-getBUILD_PROG() { _tc-getPROG CBUILD "BUILD_$1 $1_FOR_BUILD HOST$1" "${@:2}"; } |
|
|
45 | tc-getPROG() { _tc-getPROG CHOST "$@"; } |
|
|
46 | |
|
|
47 | # @FUNCTION: tc-getAR |
|
|
48 | # @USAGE: [toolchain prefix] |
|
|
49 | # @RETURN: name of the archiver |
|
|
50 | tc-getAR() { tc-getPROG AR ar "$@"; } |
|
|
51 | # @FUNCTION: tc-getAS |
|
|
52 | # @USAGE: [toolchain prefix] |
|
|
53 | # @RETURN: name of the assembler |
|
|
54 | tc-getAS() { tc-getPROG AS as "$@"; } |
|
|
55 | # @FUNCTION: tc-getCC |
|
|
56 | # @USAGE: [toolchain prefix] |
|
|
57 | # @RETURN: name of the C compiler |
|
|
58 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
59 | # @FUNCTION: tc-getCPP |
|
|
60 | # @USAGE: [toolchain prefix] |
|
|
61 | # @RETURN: name of the C preprocessor |
|
|
62 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
|
|
63 | # @FUNCTION: tc-getCXX |
|
|
64 | # @USAGE: [toolchain prefix] |
|
|
65 | # @RETURN: name of the C++ compiler |
|
|
66 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
|
|
67 | # @FUNCTION: tc-getLD |
|
|
68 | # @USAGE: [toolchain prefix] |
|
|
69 | # @RETURN: name of the linker |
|
|
70 | tc-getLD() { tc-getPROG LD ld "$@"; } |
|
|
71 | # @FUNCTION: tc-getSTRIP |
|
|
72 | # @USAGE: [toolchain prefix] |
|
|
73 | # @RETURN: name of the strip program |
|
|
74 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
|
|
75 | # @FUNCTION: tc-getNM |
|
|
76 | # @USAGE: [toolchain prefix] |
|
|
77 | # @RETURN: name of the symbol/object thingy |
|
|
78 | tc-getNM() { tc-getPROG NM nm "$@"; } |
|
|
79 | # @FUNCTION: tc-getRANLIB |
|
|
80 | # @USAGE: [toolchain prefix] |
|
|
81 | # @RETURN: name of the archiver indexer |
|
|
82 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
|
|
83 | # @FUNCTION: tc-getOBJCOPY |
|
|
84 | # @USAGE: [toolchain prefix] |
|
|
85 | # @RETURN: name of the object copier |
|
|
86 | tc-getOBJCOPY() { tc-getPROG OBJCOPY objcopy "$@"; } |
|
|
87 | # @FUNCTION: tc-getF77 |
|
|
88 | # @USAGE: [toolchain prefix] |
|
|
89 | # @RETURN: name of the Fortran 77 compiler |
|
|
90 | tc-getF77() { tc-getPROG F77 gfortran "$@"; } |
|
|
91 | # @FUNCTION: tc-getFC |
|
|
92 | # @USAGE: [toolchain prefix] |
|
|
93 | # @RETURN: name of the Fortran 90 compiler |
|
|
94 | tc-getFC() { tc-getPROG FC gfortran "$@"; } |
|
|
95 | # @FUNCTION: tc-getGCJ |
|
|
96 | # @USAGE: [toolchain prefix] |
|
|
97 | # @RETURN: name of the java compiler |
|
|
98 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
|
|
99 | # @FUNCTION: tc-getPKG_CONFIG |
|
|
100 | # @USAGE: [toolchain prefix] |
|
|
101 | # @RETURN: name of the pkg-config tool |
|
|
102 | tc-getPKG_CONFIG() { tc-getPROG PKG_CONFIG pkg-config "$@"; } |
|
|
103 | # @FUNCTION: tc-getRC |
|
|
104 | # @USAGE: [toolchain prefix] |
|
|
105 | # @RETURN: name of the Windows resource compiler |
|
|
106 | tc-getRC() { tc-getPROG RC windres "$@"; } |
|
|
107 | # @FUNCTION: tc-getDLLWRAP |
|
|
108 | # @USAGE: [toolchain prefix] |
|
|
109 | # @RETURN: name of the Windows dllwrap utility |
|
|
110 | tc-getDLLWRAP() { tc-getPROG DLLWRAP dllwrap "$@"; } |
|
|
111 | |
|
|
112 | # @FUNCTION: tc-getBUILD_AR |
|
|
113 | # @USAGE: [toolchain prefix] |
|
|
114 | # @RETURN: name of the archiver for building binaries to run on the build machine |
|
|
115 | tc-getBUILD_AR() { tc-getBUILD_PROG AR ar "$@"; } |
|
|
116 | # @FUNCTION: tc-getBUILD_AS |
|
|
117 | # @USAGE: [toolchain prefix] |
|
|
118 | # @RETURN: name of the assembler for building binaries to run on the build machine |
|
|
119 | tc-getBUILD_AS() { tc-getBUILD_PROG AS as "$@"; } |
|
|
120 | # @FUNCTION: tc-getBUILD_CC |
|
|
121 | # @USAGE: [toolchain prefix] |
|
|
122 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
|
|
123 | tc-getBUILD_CC() { tc-getBUILD_PROG CC gcc "$@"; } |
|
|
124 | # @FUNCTION: tc-getBUILD_CPP |
|
|
125 | # @USAGE: [toolchain prefix] |
|
|
126 | # @RETURN: name of the C preprocessor for building binaries to run on the build machine |
|
|
127 | tc-getBUILD_CPP() { tc-getBUILD_PROG CPP cpp "$@"; } |
|
|
128 | # @FUNCTION: tc-getBUILD_CXX |
|
|
129 | # @USAGE: [toolchain prefix] |
|
|
130 | # @RETURN: name of the C++ compiler for building binaries to run on the build machine |
|
|
131 | tc-getBUILD_CXX() { tc-getBUILD_PROG CXX g++ "$@"; } |
|
|
132 | # @FUNCTION: tc-getBUILD_LD |
|
|
133 | # @USAGE: [toolchain prefix] |
|
|
134 | # @RETURN: name of the linker for building binaries to run on the build machine |
|
|
135 | tc-getBUILD_LD() { tc-getBUILD_PROG LD ld "$@"; } |
|
|
136 | # @FUNCTION: tc-getBUILD_STRIP |
|
|
137 | # @USAGE: [toolchain prefix] |
|
|
138 | # @RETURN: name of the strip program for building binaries to run on the build machine |
|
|
139 | tc-getBUILD_STRIP() { tc-getBUILD_PROG STRIP strip "$@"; } |
|
|
140 | # @FUNCTION: tc-getBUILD_NM |
|
|
141 | # @USAGE: [toolchain prefix] |
|
|
142 | # @RETURN: name of the symbol/object thingy for building binaries to run on the build machine |
|
|
143 | tc-getBUILD_NM() { tc-getBUILD_PROG NM nm "$@"; } |
|
|
144 | # @FUNCTION: tc-getBUILD_RANLIB |
|
|
145 | # @USAGE: [toolchain prefix] |
|
|
146 | # @RETURN: name of the archiver indexer for building binaries to run on the build machine |
|
|
147 | tc-getBUILD_RANLIB() { tc-getBUILD_PROG RANLIB ranlib "$@"; } |
|
|
148 | # @FUNCTION: tc-getBUILD_OBJCOPY |
|
|
149 | # @USAGE: [toolchain prefix] |
|
|
150 | # @RETURN: name of the object copier for building binaries to run on the build machine |
|
|
151 | tc-getBUILD_OBJCOPY() { tc-getBUILD_PROG OBJCOPY objcopy "$@"; } |
|
|
152 | # @FUNCTION: tc-getBUILD_PKG_CONFIG |
|
|
153 | # @USAGE: [toolchain prefix] |
|
|
154 | # @RETURN: name of the pkg-config tool for building binaries to run on the build machine |
|
|
155 | tc-getBUILD_PKG_CONFIG() { tc-getBUILD_PROG PKG_CONFIG pkg-config "$@"; } |
| 127 | |
156 | |
| 128 | # @FUNCTION: tc-export |
157 | # @FUNCTION: tc-export |
| 129 | # @USAGE: <list of toolchain variables> |
158 | # @USAGE: <list of toolchain variables> |
| 130 | # @DESCRIPTION: |
159 | # @DESCRIPTION: |
| 131 | # Quick way to export a bunch of compiler vars at once. |
160 | # Quick way to export a bunch of compiler vars at once. |
| … | |
… | |
| 187 | tc-is-static-only() { |
216 | tc-is-static-only() { |
| 188 | local host=${CTARGET:-${CHOST}} |
217 | local host=${CTARGET:-${CHOST}} |
| 189 | |
218 | |
| 190 | # *MiNT doesn't have shared libraries, only platform so far |
219 | # *MiNT doesn't have shared libraries, only platform so far |
| 191 | return $([[ ${host} == *-mint* ]]) |
220 | return $([[ ${host} == *-mint* ]]) |
|
|
221 | } |
|
|
222 | |
|
|
223 | # @FUNCTION: tc-has-openmp |
|
|
224 | # @USAGE: [toolchain prefix] |
|
|
225 | # @DESCRIPTION: |
|
|
226 | # See if the toolchain supports OpenMP. |
|
|
227 | tc-has-openmp() { |
|
|
228 | local base="${T}/test-tc-openmp" |
|
|
229 | cat <<-EOF > "${base}.c" |
|
|
230 | #include <omp.h> |
|
|
231 | int main() { |
|
|
232 | int nthreads, tid, ret = 0; |
|
|
233 | #pragma omp parallel private(nthreads, tid) |
|
|
234 | { |
|
|
235 | tid = omp_get_thread_num(); |
|
|
236 | nthreads = omp_get_num_threads(); ret += tid + nthreads; |
|
|
237 | } |
|
|
238 | return ret; |
|
|
239 | } |
|
|
240 | EOF |
|
|
241 | $(tc-getCC "$@") -fopenmp "${base}.c" -o "${base}" >&/dev/null |
|
|
242 | local ret=$? |
|
|
243 | rm -f "${base}"* |
|
|
244 | return ${ret} |
| 192 | } |
245 | } |
| 193 | |
246 | |
| 194 | # @FUNCTION: tc-has-tls |
247 | # @FUNCTION: tc-has-tls |
| 195 | # @USAGE: [-s|-c|-l] [toolchain prefix] |
248 | # @USAGE: [-s|-c|-l] [toolchain prefix] |
| 196 | # @DESCRIPTION: |
249 | # @DESCRIPTION: |
| … | |
… | |
| 251 | m68*) echo m68k;; |
304 | m68*) echo m68k;; |
| 252 | mips*) echo mips;; |
305 | mips*) echo mips;; |
| 253 | nios2*) echo nios2;; |
306 | nios2*) echo nios2;; |
| 254 | nios*) echo nios;; |
307 | nios*) echo nios;; |
| 255 | powerpc*) |
308 | powerpc*) |
| 256 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
309 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
| 257 | # have been unified into simply 'powerpc', but until 2.6.16, |
310 | # have been unified into simply 'powerpc', but until 2.6.16, |
| 258 | # ppc32 is still using ARCH="ppc" as default |
311 | # ppc32 is still using ARCH="ppc" as default |
| 259 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
312 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] ; then |
| 260 | echo powerpc |
313 | echo powerpc |
| 261 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
314 | elif [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] ; then |
| 262 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
315 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 263 | echo powerpc |
316 | echo powerpc |
| 264 | else |
317 | else |
| 265 | echo ppc |
318 | echo ppc |
| 266 | fi |
319 | fi |
| 267 | elif [[ ${host} == powerpc64* ]] ; then |
320 | elif [[ ${host} == powerpc64* ]] ; then |
| 268 | echo ppc64 |
321 | echo ppc64 |
| 269 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
322 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 270 | ninj ppc64 ppc |
323 | ninj ppc64 ppc |
| 271 | else |
324 | else |
| 272 | echo ppc |
325 | echo ppc |
| 273 | fi |
326 | fi |
| 274 | ;; |
327 | ;; |
| 275 | s390*) echo s390;; |
328 | s390*) echo s390;; |
| 276 | sh64*) ninj sh64 sh;; |
329 | sh64*) ninj sh64 sh;; |
| 277 | sh*) echo sh;; |
330 | sh*) echo sh;; |
| 278 | sparc64*) ninj sparc64 sparc;; |
331 | sparc64*) ninj sparc64 sparc;; |
| 279 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
332 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 280 | && ninj sparc64 sparc \ |
333 | && ninj sparc64 sparc \ |
| 281 | || echo sparc |
334 | || echo sparc |
| 282 | ;; |
335 | ;; |
| 283 | vax*) echo vax;; |
336 | vax*) echo vax;; |
|
|
337 | x86_64*freebsd*) echo amd64;; |
| 284 | x86_64*) |
338 | x86_64*) |
| 285 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
339 | # Starting with linux-2.6.24, the 'x86_64' and 'i386' |
| 286 | # trees have been unified into 'x86'. |
340 | # trees have been unified into 'x86'. |
| 287 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
341 | if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.24) ]] ; then |
| 288 | echo x86 |
342 | echo x86 |
| … | |
… | |
| 334 | x86_64*) echo little;; |
388 | x86_64*) echo little;; |
| 335 | *) echo wtf;; |
389 | *) echo wtf;; |
| 336 | esac |
390 | esac |
| 337 | } |
391 | } |
| 338 | |
392 | |
|
|
393 | # Internal func. The first argument is the version info to expand. |
|
|
394 | # Query the preprocessor to improve compatibility across different |
|
|
395 | # compilers rather than maintaining a --version flag matrix. #335943 |
|
|
396 | _gcc_fullversion() { |
|
|
397 | local ver="$1"; shift |
|
|
398 | set -- `$(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__"` |
|
|
399 | eval echo "$ver" |
|
|
400 | } |
|
|
401 | |
| 339 | # @FUNCTION: gcc-fullversion |
402 | # @FUNCTION: gcc-fullversion |
| 340 | # @RETURN: compiler version (major.minor.micro: [3.4.6]) |
403 | # @RETURN: compiler version (major.minor.micro: [3.4.6]) |
| 341 | gcc-fullversion() { |
404 | gcc-fullversion() { |
| 342 | $(tc-getCC "$@") -dumpversion |
405 | _gcc_fullversion '$1.$2.$3' "$@" |
| 343 | } |
406 | } |
| 344 | # @FUNCTION: gcc-version |
407 | # @FUNCTION: gcc-version |
| 345 | # @RETURN: compiler version (major.minor: [3.4].6) |
408 | # @RETURN: compiler version (major.minor: [3.4].6) |
| 346 | gcc-version() { |
409 | gcc-version() { |
| 347 | gcc-fullversion "$@" | cut -f1,2 -d. |
410 | _gcc_fullversion '$1.$2' "$@" |
| 348 | } |
411 | } |
| 349 | # @FUNCTION: gcc-major-version |
412 | # @FUNCTION: gcc-major-version |
| 350 | # @RETURN: major compiler version (major: [3].4.6) |
413 | # @RETURN: major compiler version (major: [3].4.6) |
| 351 | gcc-major-version() { |
414 | gcc-major-version() { |
| 352 | gcc-version "$@" | cut -f1 -d. |
415 | _gcc_fullversion '$1' "$@" |
| 353 | } |
416 | } |
| 354 | # @FUNCTION: gcc-minor-version |
417 | # @FUNCTION: gcc-minor-version |
| 355 | # @RETURN: minor compiler version (minor: 3.[4].6) |
418 | # @RETURN: minor compiler version (minor: 3.[4].6) |
| 356 | gcc-minor-version() { |
419 | gcc-minor-version() { |
| 357 | gcc-version "$@" | cut -f2 -d. |
420 | _gcc_fullversion '$2' "$@" |
| 358 | } |
421 | } |
| 359 | # @FUNCTION: gcc-micro-version |
422 | # @FUNCTION: gcc-micro-version |
| 360 | # @RETURN: micro compiler version (micro: 3.4.[6]) |
423 | # @RETURN: micro compiler version (micro: 3.4.[6]) |
| 361 | gcc-micro-version() { |
424 | gcc-micro-version() { |
| 362 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
425 | _gcc_fullversion '$3' "$@" |
| 363 | } |
426 | } |
| 364 | |
427 | |
| 365 | # Returns the installation directory - internal toolchain |
428 | # Returns the installation directory - internal toolchain |
| 366 | # function for use by _gcc-specs-exists (for flag-o-matic). |
429 | # function for use by _gcc-specs-exists (for flag-o-matic). |
| 367 | _gcc-install-dir() { |
430 | _gcc-install-dir() { |