| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2006 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.23 2005/01/15 01:19:28 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.52 2006/01/15 20:21:59 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Toolchain Ninjas <ninjas@gentoo.org> |
5 | # Author: 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 | 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 |
| … | |
… | |
| 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 ${CHOST} ]] ; then |
23 | local search= |
| 25 | local search=$(type -p "${CHOST}-${prog}") |
24 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
|
|
25 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
| 26 | [[ -n ${search} ]] && prog=${search##*/} |
26 | [[ -n ${search} ]] && prog=${search##*/} |
| 27 | fi |
|
|
| 28 | |
27 | |
| 29 | export ${var}=${prog} |
28 | export ${var}=${prog} |
| 30 | echo "${!var}" |
29 | echo "${!var}" |
| 31 | } |
30 | } |
| 32 | |
31 | |
| 33 | # Returns the name of the archiver |
32 | # Returns the name of the archiver |
| 34 | tc-getAR() { tc-getPROG AR ar; } |
33 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 35 | # Returns the name of the assembler |
34 | # Returns the name of the assembler |
| 36 | tc-getAS() { tc-getPROG AS as; } |
35 | tc-getAS() { tc-getPROG AS as "$@"; } |
| 37 | # Returns the name of the C compiler |
36 | # Returns the name of the C compiler |
| 38 | tc-getCC() { tc-getPROG CC gcc; } |
37 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
| 39 | # Returns the name of the C++ compiler |
38 | # Returns the name of the C++ compiler |
| 40 | tc-getCXX() { tc-getPROG CXX g++; } |
39 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 41 | # Returns the name of the linker |
40 | # Returns the name of the linker |
| 42 | tc-getLD() { tc-getPROG LD ld; } |
41 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 43 | # Returns the name of the symbol/object thingy |
42 | # Returns the name of the symbol/object thingy |
| 44 | tc-getNM() { tc-getPROG NM nm; } |
43 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 45 | # Returns the name of the archiver indexer |
44 | # Returns the name of the archiver indexer |
| 46 | tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
45 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
| 47 | # Returns the name of the fortran compiler |
46 | # Returns the name of the fortran compiler |
| 48 | tc-getF77() { tc-getPROG F77 f77; } |
47 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
| 49 | # Returns the name of the java compiler |
48 | # Returns the name of the java compiler |
| 50 | tc-getGCJ() { tc-getPROG GCJ gcj; } |
49 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 51 | |
50 | |
| 52 | # Returns the name of the C compiler for build |
51 | # Returns the name of the C compiler for build |
| 53 | tc-getBUILD_CC() { |
52 | tc-getBUILD_CC() { |
|
|
53 | local v |
|
|
54 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
| 54 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
55 | if [[ -n ${!v} ]] ; then |
| 55 | export BUILD_CC=${CC_FOR_BUILD} |
56 | export BUILD_CC=${!v} |
| 56 | echo "${CC_FOR_BUILD}" |
57 | echo "${!v}" |
| 57 | return 0 |
58 | return 0 |
| 58 | fi |
59 | fi |
|
|
60 | done |
| 59 | |
61 | |
| 60 | local search= |
62 | local search= |
| 61 | if [[ -n ${CBUILD} ]] ; then |
63 | if [[ -n ${CBUILD} ]] ; then |
| 62 | search=$(type -p ${CBUILD}-gcc) |
64 | search=$(type -p ${CBUILD}-gcc) |
| 63 | search=${search##*/} |
65 | search=${search##*/} |
| 64 | else |
|
|
| 65 | search=gcc |
|
|
| 66 | fi |
66 | fi |
|
|
67 | search=${search:-gcc} |
| 67 | |
68 | |
| 68 | export BUILD_CC=${search} |
69 | export BUILD_CC=${search} |
| 69 | echo "${search}" |
70 | echo "${search}" |
| 70 | } |
71 | } |
| 71 | |
72 | |
| 72 | # Quick way to export a bunch of vars at once |
73 | # Quick way to export a bunch of vars at once |
| 73 | tc-export() { |
74 | tc-export() { |
| 74 | local var |
75 | local var |
| 75 | for var in "$@" ; do |
76 | for var in "$@" ; do |
| 76 | eval tc-get${var} |
77 | eval tc-get${var} > /dev/null |
| 77 | done |
78 | done |
| 78 | } |
79 | } |
| 79 | |
80 | |
| 80 | # A simple way to see if we're using a cross-compiler ... |
81 | # A simple way to see if we're using a cross-compiler ... |
| 81 | tc-is-cross-compiler() { |
82 | tc-is-cross-compiler() { |
| 82 | if [[ -n ${CBUILD} ]] ; then |
|
|
| 83 | return $([[ ${CBUILD} != ${CHOST} ]]) |
83 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 84 | fi |
|
|
| 85 | return 1 |
|
|
| 86 | } |
84 | } |
| 87 | |
85 | |
| 88 | |
86 | |
| 89 | # Parse information from CBUILD/CHOST/CTARGET rather than |
87 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 90 | # use external variables from the profile. |
88 | # use external variables from the profile. |
| 91 | tc-ninja_magic_to_arch() { |
89 | tc-ninja_magic_to_arch() { |
| 92 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
90 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 93 | |
91 | |
| 94 | local type=$1 |
92 | local type=$1 |
| 95 | local host=$2 |
93 | local host=$2 |
| 96 | [[ -z ${host} ]] && arg=${CHOST} |
94 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 97 | |
95 | |
| 98 | case ${host} in |
96 | case ${host} in |
| 99 | alpha*) echo alpha;; |
97 | alpha*) echo alpha;; |
| 100 | x86_64*) ninj x86_64 amd64;; |
|
|
| 101 | arm*) echo arm;; |
98 | arm*) echo arm;; |
|
|
99 | bfin*) ninj bfin blackfin;; |
|
|
100 | cris*) echo cris;; |
| 102 | hppa*) ninj parisc hppa;; |
101 | hppa*) ninj parisc hppa;; |
|
|
102 | i?86*) ninj i386 x86;; |
| 103 | ia64*) echo ia64;; |
103 | ia64*) echo ia64;; |
| 104 | m68*) echo m68k;; |
104 | m68*) echo m68k;; |
| 105 | mips*) echo mips;; |
105 | mips*) echo mips;; |
| 106 | powerpc64*) echo ppc64;; |
106 | nios2*) echo nios2;; |
| 107 | powerpc*) echo ppc;; |
107 | nios*) echo nios;; |
| 108 | sparc64*) ninj sparc64 sparc;; |
108 | powerpc*) |
| 109 | sparc*) echo sparc;; |
109 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
|
|
110 | # have been unified into simply 'powerpc' |
|
|
111 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
|
|
112 | echo powerpc |
|
|
113 | elif [[ ${host} == powerpc64* ]] ; then |
|
|
114 | echo ppc64 |
|
|
115 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
|
|
116 | ninj ppc64 ppc |
|
|
117 | else |
|
|
118 | echo ppc |
|
|
119 | fi |
|
|
120 | ;; |
| 110 | s390*) echo s390;; |
121 | s390*) echo s390;; |
| 111 | sh64*) ninj sh64 sh;; |
122 | sh64*) ninj sh64 sh;; |
| 112 | sh*) echo sh;; |
123 | sh*) echo sh;; |
| 113 | i?86*) ninj i386 x86;; |
124 | sparc64*) ninj sparc64 sparc;; |
| 114 | *) echo wtf;; |
125 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
|
|
126 | && ninj sparc64 sparc \ |
|
|
127 | || echo sparc |
|
|
128 | ;; |
|
|
129 | vax*) echo vax;; |
|
|
130 | x86_64*) ninj x86_64 amd64;; |
|
|
131 | *) echo ${ARCH};; |
| 115 | esac |
132 | esac |
| 116 | } |
133 | } |
| 117 | tc-arch-kernel() { |
134 | tc-arch-kernel() { |
| 118 | tc-ninja_magic_to_arch kern $@ |
135 | tc-ninja_magic_to_arch kern $@ |
| 119 | } |
136 | } |
| 120 | tc-arch() { |
137 | tc-arch() { |
| 121 | tc-ninja_magic_to_arch portage $@ |
138 | tc-ninja_magic_to_arch portage $@ |
| 122 | } |
139 | } |
| 123 | tc-endian() { |
140 | tc-endian() { |
| 124 | local host=$1 |
141 | local host=$1 |
| 125 | [[ -z ${host} ]] && host=${CHOST} |
142 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
143 | host=${host%%-*} |
| 126 | |
144 | |
| 127 | case ${host} in |
145 | case ${host} in |
| 128 | alpha*) echo big;; |
146 | alpha*) echo big;; |
| 129 | x86_64*) echo little;; |
|
|
| 130 | arm*eb-*) echo big;; |
147 | arm*b*) echo big;; |
| 131 | arm*) echo little;; |
148 | arm*) echo little;; |
|
|
149 | cris*) echo little;; |
| 132 | hppa*) echo big;; |
150 | hppa*) echo big;; |
|
|
151 | i?86*) echo little;; |
| 133 | ia64*) echo little;; |
152 | ia64*) echo little;; |
| 134 | m68*) echo big;; |
153 | m68*) echo big;; |
| 135 | mips*el-*) echo little;; |
154 | mips*l*) echo little;; |
| 136 | mips*) echo big;; |
155 | mips*) echo big;; |
| 137 | powerpc*) echo big;; |
156 | powerpc*) echo big;; |
|
|
157 | s390*) echo big;; |
|
|
158 | sh*b*) echo big;; |
|
|
159 | sh*) echo little;; |
| 138 | sparc*) echo big;; |
160 | sparc*) echo big;; |
| 139 | s390*) echo big;; |
|
|
| 140 | sh*el-) echo little;; |
|
|
| 141 | sh*) echo big;; |
|
|
| 142 | i?86*) echo little;; |
161 | x86_64*) echo little;; |
| 143 | *) echo wtf;; |
162 | *) echo wtf;; |
| 144 | esac |
163 | esac |
| 145 | } |
164 | } |
| 146 | |
165 | |
| 147 | # Returns the version as by `$CC -dumpversion` |
166 | # Returns the version as by `$CC -dumpversion` |
| … | |
… | |
| 160 | gcc-minor-version() { |
179 | gcc-minor-version() { |
| 161 | echo "$(gcc-version | cut -f2 -d.)" |
180 | echo "$(gcc-version | cut -f2 -d.)" |
| 162 | } |
181 | } |
| 163 | # Returns the Micro version |
182 | # Returns the Micro version |
| 164 | gcc-micro-version() { |
183 | gcc-micro-version() { |
| 165 | echo "$(gcc-fullversion | cut -f3 -d.)" |
184 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 166 | } |
185 | } |
|
|
186 | |
|
|
187 | # Returns requested gcc specs directive |
|
|
188 | # Note; later specs normally overwrite earlier ones; however if a later |
|
|
189 | # spec starts with '+' then it appends. |
|
|
190 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
|
|
191 | # as "Reading <file>", in order. |
|
|
192 | gcc-specs-directive() { |
|
|
193 | local specfiles=$($(tc-getCC) -v 2>&1 | awk '$1=="Reading" {print $NF}') |
|
|
194 | $(tc-getCC) -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
|
|
195 | 'BEGIN { pspec=""; spec=""; outside=1 } |
|
|
196 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
|
|
197 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
|
|
198 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
|
|
199 | { spec=spec $0 } |
|
|
200 | END { print spec }' |
|
|
201 | return 0 |
|
|
202 | } |
|
|
203 | |
|
|
204 | # Returns true if gcc sets relro |
|
|
205 | gcc-specs-relro() { |
|
|
206 | local directive |
|
|
207 | directive=$(gcc-specs-directive link_command) |
|
|
208 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
|
|
209 | } |
|
|
210 | # Returns true if gcc sets now |
|
|
211 | gcc-specs-now() { |
|
|
212 | local directive |
|
|
213 | directive=$(gcc-specs-directive link_command) |
|
|
214 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
|
|
215 | } |
|
|
216 | # Returns true if gcc builds PIEs |
|
|
217 | gcc-specs-pie() { |
|
|
218 | local directive |
|
|
219 | directive=$(gcc-specs-directive cc1) |
|
|
220 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
|
|
221 | } |
|
|
222 | # Returns true if gcc builds with the stack protector |
|
|
223 | gcc-specs-ssp() { |
|
|
224 | local directive |
|
|
225 | directive=$(gcc-specs-directive cc1) |
|
|
226 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
|
|
227 | } |
|
|
228 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
|
|
229 | gcc-specs-ssp-to-all() { |
|
|
230 | local directive |
|
|
231 | directive=$(gcc-specs-directive cc1) |
|
|
232 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
|
|
233 | } |