1 | # Copyright 1999-2005 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.41 2005/08/01 07:27:27 kevquinn Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.54 2006/01/24 20:12:53 josejx 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 | inherit multilib |
10 | inherit multilib |
11 | |
|
|
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 |
… | |
… | |
21 | return 0 |
20 | return 0 |
22 | fi |
21 | fi |
23 | |
22 | |
24 | local search= |
23 | local search= |
25 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
24 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
26 | [[ -z ${search} && -n $(get_abi_CHOST) ]] && search=$(type -p "$(get_abi_CHOST)-${prog}") |
|
|
27 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
25 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
28 | [[ -n ${search} ]] && prog=${search##*/} |
26 | [[ -n ${search} ]] && prog=${search##*/} |
29 | |
27 | |
30 | export ${var}=${prog} |
28 | export ${var}=${prog} |
31 | echo "${!var}" |
29 | echo "${!var}" |
… | |
… | |
50 | # Returns the name of the java compiler |
48 | # Returns the name of the java compiler |
51 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
49 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
52 | |
50 | |
53 | # Returns the name of the C compiler for build |
51 | # Returns the name of the C compiler for build |
54 | tc-getBUILD_CC() { |
52 | tc-getBUILD_CC() { |
|
|
53 | local v |
|
|
54 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
55 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
55 | if [[ -n ${!v} ]] ; then |
56 | export BUILD_CC=${CC_FOR_BUILD} |
56 | export BUILD_CC=${!v} |
57 | echo "${CC_FOR_BUILD}" |
57 | echo "${!v}" |
58 | return 0 |
58 | return 0 |
59 | fi |
59 | fi |
|
|
60 | done |
60 | |
61 | |
61 | local search= |
62 | local search= |
62 | if [[ -n ${CBUILD} ]] ; then |
63 | if [[ -n ${CBUILD} ]] ; then |
63 | search=$(type -p ${CBUILD}-gcc) |
64 | search=$(type -p ${CBUILD}-gcc) |
64 | search=${search##*/} |
65 | search=${search##*/} |
65 | else |
|
|
66 | search=gcc |
|
|
67 | fi |
66 | fi |
|
|
67 | search=${search:-gcc} |
68 | |
68 | |
69 | export BUILD_CC=${search} |
69 | export BUILD_CC=${search} |
70 | echo "${search}" |
70 | echo "${search}" |
71 | } |
71 | } |
72 | |
72 | |
… | |
… | |
78 | done |
78 | done |
79 | } |
79 | } |
80 | |
80 | |
81 | # 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 ... |
82 | tc-is-cross-compiler() { |
82 | tc-is-cross-compiler() { |
83 | if [[ -n ${CBUILD} ]] ; then |
|
|
84 | return $([[ ${CBUILD} != ${CHOST} ]]) |
83 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
85 | fi |
|
|
86 | return 1 |
|
|
87 | } |
84 | } |
88 | |
85 | |
89 | |
86 | |
90 | # Parse information from CBUILD/CHOST/CTARGET rather than |
87 | # Parse information from CBUILD/CHOST/CTARGET rather than |
91 | # use external variables from the profile. |
88 | # use external variables from the profile. |
… | |
… | |
96 | local host=$2 |
93 | local host=$2 |
97 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
94 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
98 | |
95 | |
99 | case ${host} in |
96 | case ${host} in |
100 | alpha*) echo alpha;; |
97 | alpha*) echo alpha;; |
101 | x86_64*) ninj x86_64 amd64;; |
|
|
102 | arm*) echo arm;; |
98 | arm*) echo arm;; |
|
|
99 | bfin*) ninj blackfin bfin;; |
|
|
100 | cris*) echo cris;; |
103 | hppa*) ninj parisc hppa;; |
101 | hppa*) ninj parisc hppa;; |
|
|
102 | i?86*) ninj i386 x86;; |
104 | ia64*) echo ia64;; |
103 | ia64*) echo ia64;; |
105 | m68*) echo m68k;; |
104 | m68*) echo m68k;; |
106 | mips*) echo mips;; |
105 | mips*) echo mips;; |
107 | powerpc64*) echo ppc64;; |
106 | nios2*) echo nios2;; |
|
|
107 | nios*) echo nios;; |
|
|
108 | powerpc*) |
|
|
109 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
|
|
110 | # have been unified into simply 'powerpc', but until 2.6.16, |
|
|
111 | # ppc32 is still using ARCH="ppc" as default |
|
|
112 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
|
|
113 | echo powerpc |
|
|
114 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
|
|
115 | if [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
|
|
116 | echo powerpc |
|
|
117 | else |
|
|
118 | echo ppc |
|
|
119 | fi |
|
|
120 | elif [[ ${host} == powerpc64* ]] ; then |
|
|
121 | echo ppc64 |
108 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
122 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
109 | && ninj ppc64 ppc \ |
123 | ninj ppc64 ppc |
|
|
124 | else |
110 | || echo ppc |
125 | echo ppc |
|
|
126 | fi |
111 | ;; |
127 | ;; |
|
|
128 | s390*) echo s390;; |
|
|
129 | sh64*) ninj sh64 sh;; |
|
|
130 | sh*) echo sh;; |
112 | sparc64*) ninj sparc64 sparc;; |
131 | sparc64*) ninj sparc64 sparc;; |
113 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
132 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
114 | && ninj sparc64 sparc \ |
133 | && ninj sparc64 sparc \ |
115 | || echo sparc |
134 | || echo sparc |
116 | ;; |
135 | ;; |
117 | s390*) echo s390;; |
136 | vax*) echo vax;; |
118 | sh64*) ninj sh64 sh;; |
137 | x86_64*) ninj x86_64 amd64;; |
119 | sh*) echo sh;; |
|
|
120 | i?86*) ninj i386 x86;; |
|
|
121 | *) echo ${ARCH};; |
138 | *) echo ${ARCH};; |
122 | esac |
139 | esac |
123 | } |
140 | } |
124 | tc-arch-kernel() { |
141 | tc-arch-kernel() { |
125 | tc-ninja_magic_to_arch kern $@ |
142 | tc-ninja_magic_to_arch kern $@ |
… | |
… | |
132 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
149 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
133 | host=${host%%-*} |
150 | host=${host%%-*} |
134 | |
151 | |
135 | case ${host} in |
152 | case ${host} in |
136 | alpha*) echo big;; |
153 | alpha*) echo big;; |
137 | x86_64*) echo little;; |
|
|
138 | arm*b*) echo big;; |
154 | arm*b*) echo big;; |
139 | arm*) echo little;; |
155 | arm*) echo little;; |
|
|
156 | cris*) echo little;; |
140 | hppa*) echo big;; |
157 | hppa*) echo big;; |
|
|
158 | i?86*) echo little;; |
141 | ia64*) echo little;; |
159 | ia64*) echo little;; |
142 | m68*) echo big;; |
160 | m68*) echo big;; |
143 | mips*l*) echo little;; |
161 | mips*l*) echo little;; |
144 | mips*) echo big;; |
162 | mips*) echo big;; |
145 | powerpc*) echo big;; |
163 | powerpc*) echo big;; |
146 | sparc*) echo big;; |
|
|
147 | s390*) echo big;; |
164 | s390*) echo big;; |
148 | sh*b*) echo big;; |
165 | sh*b*) echo big;; |
149 | sh*) echo little;; |
166 | sh*) echo little;; |
|
|
167 | sparc*) echo big;; |
150 | i?86*) echo little;; |
168 | x86_64*) echo little;; |
151 | *) echo wtf;; |
169 | *) echo wtf;; |
152 | esac |
170 | esac |
153 | } |
171 | } |
154 | |
172 | |
155 | # Returns the version as by `$CC -dumpversion` |
173 | # Returns the version as by `$CC -dumpversion` |
… | |
… | |
172 | gcc-micro-version() { |
190 | gcc-micro-version() { |
173 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
191 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
174 | } |
192 | } |
175 | |
193 | |
176 | # Returns requested gcc specs directive |
194 | # Returns requested gcc specs directive |
177 | # Note; if a spec exists more than once (e.g. in more than one specs file) |
195 | # Note; later specs normally overwrite earlier ones; however if a later |
178 | # the last one read is the active definition - i.e. they do not accumulate, |
196 | # spec starts with '+' then it appends. |
179 | # each new definition replaces any previous definition. |
197 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
|
|
198 | # as "Reading <file>", in order. |
180 | gcc-specs-directive() { |
199 | gcc-specs-directive() { |
181 | local specfiles=$($(tc-getCC) -v 2>&1 | grep "^Reading" | awk '{print $NF}') |
200 | local specfiles=$($(tc-getCC) -v 2>&1 | awk '$1=="Reading" {print $NF}') |
182 | awk -v spec=$1 \ |
201 | $(tc-getCC) -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
183 | 'BEGIN { sstr=""; outside=1 } |
202 | 'BEGIN { pspec=""; spec=""; outside=1 } |
184 | $1=="*"spec":" { sstr=""; outside=0; next } |
203 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
185 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
204 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
186 | { sstr=sstr $0 } |
205 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
187 | END { print sstr }' ${specfiles} |
206 | { spec=spec $0 } |
|
|
207 | END { print spec }' |
|
|
208 | return 0 |
188 | } |
209 | } |
189 | |
210 | |
190 | # Returns true if gcc sets relro |
211 | # Returns true if gcc sets relro |
191 | gcc-specs-relro() { |
212 | gcc-specs-relro() { |
192 | local directive |
213 | local directive |
… | |
… | |
209 | gcc-specs-ssp() { |
230 | gcc-specs-ssp() { |
210 | local directive |
231 | local directive |
211 | directive=$(gcc-specs-directive cc1) |
232 | directive=$(gcc-specs-directive cc1) |
212 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
233 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
213 | } |
234 | } |
214 | |
235 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
|
|
236 | gcc-specs-ssp-to-all() { |
|
|
237 | local directive |
|
|
238 | directive=$(gcc-specs-directive cc1) |
|
|
239 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
|
|
240 | } |