| 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.43 2005/09/15 00:13:10 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.53 2006/01/15 20:31:52 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 | inherit multilib |
10 | inherit multilib |
| … | |
… | |
| 20 | return 0 |
20 | return 0 |
| 21 | fi |
21 | fi |
| 22 | |
22 | |
| 23 | local search= |
23 | local search= |
| 24 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
24 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
| 25 | [[ -z ${search} && -n $(get_abi_CHOST) ]] && search=$(type -p "$(get_abi_CHOST)-${prog}") |
|
|
| 26 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
25 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
| 27 | [[ -n ${search} ]] && prog=${search##*/} |
26 | [[ -n ${search} ]] && prog=${search##*/} |
| 28 | |
27 | |
| 29 | export ${var}=${prog} |
28 | export ${var}=${prog} |
| 30 | echo "${!var}" |
29 | echo "${!var}" |
| … | |
… | |
| 62 | |
61 | |
| 63 | local search= |
62 | local search= |
| 64 | if [[ -n ${CBUILD} ]] ; then |
63 | if [[ -n ${CBUILD} ]] ; then |
| 65 | search=$(type -p ${CBUILD}-gcc) |
64 | search=$(type -p ${CBUILD}-gcc) |
| 66 | search=${search##*/} |
65 | search=${search##*/} |
| 67 | else |
|
|
| 68 | search=gcc |
|
|
| 69 | fi |
66 | fi |
|
|
67 | search=${search:-gcc} |
| 70 | |
68 | |
| 71 | export BUILD_CC=${search} |
69 | export BUILD_CC=${search} |
| 72 | echo "${search}" |
70 | echo "${search}" |
| 73 | } |
71 | } |
| 74 | |
72 | |
| … | |
… | |
| 95 | local host=$2 |
93 | local host=$2 |
| 96 | [[ -z ${host} ]] && host=${CTARGET:-${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 blackfin bfin;; |
|
|
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 | nios*) echo nios;; |
|
|
108 | powerpc*) |
|
|
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 |
| 107 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
115 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
| 108 | && ninj ppc64 ppc \ |
116 | ninj ppc64 ppc |
|
|
117 | else |
| 109 | || echo ppc |
118 | echo ppc |
|
|
119 | fi |
| 110 | ;; |
120 | ;; |
|
|
121 | s390*) echo s390;; |
|
|
122 | sh64*) ninj sh64 sh;; |
|
|
123 | sh*) echo sh;; |
| 111 | sparc64*) ninj sparc64 sparc;; |
124 | sparc64*) ninj sparc64 sparc;; |
| 112 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
125 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 113 | && ninj sparc64 sparc \ |
126 | && ninj sparc64 sparc \ |
| 114 | || echo sparc |
127 | || echo sparc |
| 115 | ;; |
128 | ;; |
| 116 | s390*) echo s390;; |
129 | vax*) echo vax;; |
| 117 | sh64*) ninj sh64 sh;; |
130 | x86_64*) ninj x86_64 amd64;; |
| 118 | sh*) echo sh;; |
|
|
| 119 | i?86*) ninj i386 x86;; |
|
|
| 120 | *) echo ${ARCH};; |
131 | *) echo ${ARCH};; |
| 121 | esac |
132 | esac |
| 122 | } |
133 | } |
| 123 | tc-arch-kernel() { |
134 | tc-arch-kernel() { |
| 124 | tc-ninja_magic_to_arch kern $@ |
135 | tc-ninja_magic_to_arch kern $@ |
| … | |
… | |
| 131 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
142 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 132 | host=${host%%-*} |
143 | host=${host%%-*} |
| 133 | |
144 | |
| 134 | case ${host} in |
145 | case ${host} in |
| 135 | alpha*) echo big;; |
146 | alpha*) echo big;; |
| 136 | x86_64*) echo little;; |
|
|
| 137 | arm*b*) echo big;; |
147 | arm*b*) echo big;; |
| 138 | arm*) echo little;; |
148 | arm*) echo little;; |
|
|
149 | cris*) echo little;; |
| 139 | hppa*) echo big;; |
150 | hppa*) echo big;; |
|
|
151 | i?86*) echo little;; |
| 140 | ia64*) echo little;; |
152 | ia64*) echo little;; |
| 141 | m68*) echo big;; |
153 | m68*) echo big;; |
| 142 | mips*l*) echo little;; |
154 | mips*l*) echo little;; |
| 143 | mips*) echo big;; |
155 | mips*) echo big;; |
| 144 | powerpc*) echo big;; |
156 | powerpc*) echo big;; |
| 145 | sparc*) echo big;; |
|
|
| 146 | s390*) echo big;; |
157 | s390*) echo big;; |
| 147 | sh*b*) echo big;; |
158 | sh*b*) echo big;; |
| 148 | sh*) echo little;; |
159 | sh*) echo little;; |
|
|
160 | sparc*) echo big;; |
| 149 | i?86*) echo little;; |
161 | x86_64*) echo little;; |
| 150 | *) echo wtf;; |
162 | *) echo wtf;; |
| 151 | esac |
163 | esac |
| 152 | } |
164 | } |
| 153 | |
165 | |
| 154 | # Returns the version as by `$CC -dumpversion` |
166 | # Returns the version as by `$CC -dumpversion` |
| … | |
… | |
| 171 | gcc-micro-version() { |
183 | gcc-micro-version() { |
| 172 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
184 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 173 | } |
185 | } |
| 174 | |
186 | |
| 175 | # Returns requested gcc specs directive |
187 | # Returns requested gcc specs directive |
| 176 | # Note; if a spec exists more than once (e.g. in more than one specs file) |
188 | # Note; later specs normally overwrite earlier ones; however if a later |
| 177 | # the last one read is the active definition - i.e. they do not accumulate, |
189 | # spec starts with '+' then it appends. |
| 178 | # each new definition replaces any previous definition. |
190 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
|
|
191 | # as "Reading <file>", in order. |
| 179 | gcc-specs-directive() { |
192 | gcc-specs-directive() { |
| 180 | local specfiles=$($(tc-getCC) -v 2>&1 | grep "^Reading" | awk '{print $NF}') |
193 | local specfiles=$($(tc-getCC) -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 181 | [[ -z ${specfiles} ]] && return 0 |
194 | $(tc-getCC) -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 182 | awk -v spec=$1 \ |
|
|
| 183 | 'BEGIN { sstr=""; outside=1 } |
195 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 184 | $1=="*"spec":" { sstr=""; outside=0; next } |
196 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| 185 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
197 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
| 186 | { sstr=sstr $0 } |
198 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
| 187 | END { print sstr }' ${specfiles} |
199 | { spec=spec $0 } |
|
|
200 | END { print spec }' |
|
|
201 | return 0 |
| 188 | } |
202 | } |
| 189 | |
203 | |
| 190 | # Returns true if gcc sets relro |
204 | # Returns true if gcc sets relro |
| 191 | gcc-specs-relro() { |
205 | gcc-specs-relro() { |
| 192 | local directive |
206 | local directive |
| … | |
… | |
| 209 | gcc-specs-ssp() { |
223 | gcc-specs-ssp() { |
| 210 | local directive |
224 | local directive |
| 211 | directive=$(gcc-specs-directive cc1) |
225 | directive=$(gcc-specs-directive cc1) |
| 212 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
226 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
| 213 | } |
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 | } |