| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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.44 2005/09/16 01:44:42 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.48 2005/11/03 10:10:48 eradicator 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;; |
| 102 | thumb*) echo arm;; |
99 | cris*) echo cris;; |
| 103 | hppa*) ninj parisc hppa;; |
100 | hppa*) ninj parisc hppa;; |
|
|
101 | i?86*) ninj i386 x86;; |
| 104 | ia64*) echo ia64;; |
102 | ia64*) echo ia64;; |
| 105 | m68*) echo m68k;; |
103 | m68*) echo m68k;; |
| 106 | mips*) echo mips;; |
104 | mips*) echo mips;; |
| 107 | powerpc64*) echo ppc64;; |
105 | powerpc64*) echo ppc64;; |
| 108 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
106 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
| 109 | && ninj ppc64 ppc \ |
107 | && ninj ppc64 ppc \ |
| 110 | || echo ppc |
108 | || echo ppc |
| 111 | ;; |
109 | ;; |
|
|
110 | s390*) echo s390;; |
|
|
111 | sh64*) ninj sh64 sh;; |
|
|
112 | sh*) echo sh;; |
| 112 | sparc64*) ninj sparc64 sparc;; |
113 | sparc64*) ninj sparc64 sparc;; |
| 113 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
114 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
| 114 | && ninj sparc64 sparc \ |
115 | && ninj sparc64 sparc \ |
| 115 | || echo sparc |
116 | || echo sparc |
| 116 | ;; |
117 | ;; |
| 117 | s390*) echo s390;; |
118 | vax*) echo vax;; |
| 118 | sh64*) ninj sh64 sh;; |
119 | x86_64*) ninj x86_64 amd64;; |
| 119 | sh*) echo sh;; |
|
|
| 120 | i?86*) ninj i386 x86;; |
|
|
| 121 | *) echo ${ARCH};; |
120 | *) echo ${ARCH};; |
| 122 | esac |
121 | esac |
| 123 | } |
122 | } |
| 124 | tc-arch-kernel() { |
123 | tc-arch-kernel() { |
| 125 | tc-ninja_magic_to_arch kern $@ |
124 | tc-ninja_magic_to_arch kern $@ |
| … | |
… | |
| 132 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
131 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 133 | host=${host%%-*} |
132 | host=${host%%-*} |
| 134 | |
133 | |
| 135 | case ${host} in |
134 | case ${host} in |
| 136 | alpha*) echo big;; |
135 | alpha*) echo big;; |
| 137 | x86_64*) echo little;; |
|
|
| 138 | arm*b*) echo big;; |
136 | arm*b*) echo big;; |
| 139 | arm*) echo little;; |
137 | arm*) echo little;; |
| 140 | thumb*) echo little;; |
138 | cris*) echo little;; |
| 141 | hppa*) echo big;; |
139 | hppa*) echo big;; |
|
|
140 | i?86*) echo little;; |
| 142 | ia64*) echo little;; |
141 | ia64*) echo little;; |
| 143 | m68*) echo big;; |
142 | m68*) echo big;; |
| 144 | mips*l*) echo little;; |
143 | mips*l*) echo little;; |
| 145 | mips*) echo big;; |
144 | mips*) echo big;; |
| 146 | powerpc*) echo big;; |
145 | powerpc*) echo big;; |
| 147 | sparc*) echo big;; |
|
|
| 148 | s390*) echo big;; |
146 | s390*) echo big;; |
| 149 | sh*b*) echo big;; |
147 | sh*b*) echo big;; |
| 150 | sh*) echo little;; |
148 | sh*) echo little;; |
|
|
149 | sparc*) echo big;; |
| 151 | i?86*) echo little;; |
150 | x86_64*) echo little;; |
| 152 | *) echo wtf;; |
151 | *) echo wtf;; |
| 153 | esac |
152 | esac |
| 154 | } |
153 | } |
| 155 | |
154 | |
| 156 | # Returns the version as by `$CC -dumpversion` |
155 | # Returns the version as by `$CC -dumpversion` |
| … | |
… | |
| 173 | gcc-micro-version() { |
172 | gcc-micro-version() { |
| 174 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
173 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 175 | } |
174 | } |
| 176 | |
175 | |
| 177 | # Returns requested gcc specs directive |
176 | # Returns requested gcc specs directive |
| 178 | # Note; if a spec exists more than once (e.g. in more than one specs file) |
177 | # Note; later specs normally overwrite earlier ones; however if a later |
| 179 | # the last one read is the active definition - i.e. they do not accumulate, |
178 | # spec starts with '+' then it appends. |
| 180 | # each new definition replaces any previous definition. |
179 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
|
|
180 | # as "Reading <file>", in order. |
| 181 | gcc-specs-directive() { |
181 | gcc-specs-directive() { |
| 182 | local specfiles=$($(tc-getCC) -v 2>&1 | grep "^Reading" | awk '{print $NF}') |
182 | local specfiles=$($(tc-getCC) -v 2>&1 | awk '$1=="Reading" {print $NF}') |
| 183 | [[ -z ${specfiles} ]] && return 0 |
183 | $(tc-getCC) -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
| 184 | awk -v spec=$1 \ |
|
|
| 185 | 'BEGIN { sstr=""; outside=1 } |
184 | 'BEGIN { pspec=""; spec=""; outside=1 } |
| 186 | $1=="*"spec":" { sstr=""; outside=0; next } |
185 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
| 187 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
186 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
| 188 | { sstr=sstr $0 } |
187 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
| 189 | END { print sstr }' ${specfiles} |
188 | { spec=spec $0 } |
|
|
189 | END { print spec }' |
|
|
190 | return 0 |
| 190 | } |
191 | } |
| 191 | |
192 | |
| 192 | # Returns true if gcc sets relro |
193 | # Returns true if gcc sets relro |
| 193 | gcc-specs-relro() { |
194 | gcc-specs-relro() { |
| 194 | local directive |
195 | local directive |
| … | |
… | |
| 211 | gcc-specs-ssp() { |
212 | gcc-specs-ssp() { |
| 212 | local directive |
213 | local directive |
| 213 | directive=$(gcc-specs-directive cc1) |
214 | directive=$(gcc-specs-directive cc1) |
| 214 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
215 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
| 215 | } |
216 | } |
|
|
217 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
|
|
218 | gcc-specs-ssp-to-all() { |
|
|
219 | local directive |
|
|
220 | directive=$(gcc-specs-directive cc1) |
|
|
221 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
|
|
222 | } |