| 1 | # Copyright 1999-2004 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.20 2005/01/11 01:07:49 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.43 2005/09/15 00:13:10 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Toolchain Ninjas <ninjas@gentoo.org> |
5 | # Author: Toolchain Ninjas <ninjas@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 eutils |
10 | inherit multilib |
| 11 | |
|
|
| 12 | ECLASS=toolchain-funcs |
|
|
| 13 | INHERITED="$INHERITED $ECLASS" |
|
|
| 14 | |
11 | |
| 15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
12 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 16 | |
13 | |
| 17 | tc-getPROG() { |
14 | tc-getPROG() { |
| 18 | local var=$1 |
15 | local var=$1 |
| … | |
… | |
| 21 | if [[ -n ${!var} ]] ; then |
18 | if [[ -n ${!var} ]] ; then |
| 22 | echo "${!var}" |
19 | echo "${!var}" |
| 23 | return 0 |
20 | return 0 |
| 24 | fi |
21 | fi |
| 25 | |
22 | |
| 26 | if [[ -n ${CHOST} ]] ; then |
23 | local search= |
| 27 | local search=$(type -p "${CHOST}-${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}") |
| 28 | [[ -n ${search} ]] && prog=${search##*/} |
27 | [[ -n ${search} ]] && prog=${search##*/} |
| 29 | fi |
|
|
| 30 | |
28 | |
| 31 | export ${var}=${prog} |
29 | export ${var}=${prog} |
| 32 | echo "${!var}" |
30 | echo "${!var}" |
| 33 | } |
31 | } |
| 34 | |
32 | |
| 35 | # Returns the name of the archiver |
33 | # Returns the name of the archiver |
| 36 | tc-getAR() { tc-getPROG AR ar; } |
34 | tc-getAR() { tc-getPROG AR ar "$@"; } |
| 37 | # Returns the name of the assembler |
35 | # Returns the name of the assembler |
| 38 | tc-getAS() { tc-getPROG AS as; } |
36 | tc-getAS() { tc-getPROG AS as "$@"; } |
| 39 | # Returns the name of the C compiler |
37 | # Returns the name of the C compiler |
| 40 | tc-getCC() { tc-getPROG CC gcc; } |
38 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
| 41 | # Returns the name of the C++ compiler |
39 | # Returns the name of the C++ compiler |
| 42 | tc-getCXX() { tc-getPROG CXX g++; } |
40 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
| 43 | # Returns the name of the linker |
41 | # Returns the name of the linker |
| 44 | tc-getLD() { tc-getPROG LD ld; } |
42 | tc-getLD() { tc-getPROG LD ld "$@"; } |
| 45 | # Returns the name of the symbol/object thingy |
43 | # Returns the name of the symbol/object thingy |
| 46 | tc-getNM() { tc-getPROG NM nm; } |
44 | tc-getNM() { tc-getPROG NM nm "$@"; } |
| 47 | # Returns the name of the archiver indexer |
45 | # Returns the name of the archiver indexer |
| 48 | tc-getRANLIB() { tc-getPROG RANLIB ranlib; } |
46 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
| 49 | # Returns the name of the fortran compiler |
47 | # Returns the name of the fortran compiler |
| 50 | tc-getF77() { tc-getPROG F77 f77; } |
48 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
| 51 | # Returns the name of the java compiler |
49 | # Returns the name of the java compiler |
| 52 | tc-getGCJ() { tc-getPROG GCJ gcj; } |
50 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
| 53 | |
51 | |
| 54 | # Returns the name of the C compiler for build |
52 | # Returns the name of the C compiler for build |
| 55 | tc-getBUILD_CC() { |
53 | tc-getBUILD_CC() { |
|
|
54 | local v |
|
|
55 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
| 56 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
56 | if [[ -n ${!v} ]] ; then |
| 57 | export BUILD_CC=${CC_FOR_BUILD} |
57 | export BUILD_CC=${!v} |
| 58 | echo "${CC_FOR_BUILD}" |
58 | echo "${!v}" |
| 59 | return 0 |
59 | return 0 |
| 60 | fi |
60 | fi |
|
|
61 | done |
| 61 | |
62 | |
| 62 | local search= |
63 | local search= |
| 63 | if [[ -n ${CBUILD} ]] ; then |
64 | if [[ -n ${CBUILD} ]] ; then |
| 64 | search=$(type -p "${CBUILD}-gcc") |
65 | search=$(type -p ${CBUILD}-gcc) |
| 65 | search=${search##*/} |
66 | search=${search##*/} |
| 66 | else |
67 | else |
| 67 | search=gcc |
68 | search=gcc |
| 68 | fi |
69 | fi |
| 69 | |
70 | |
| … | |
… | |
| 73 | |
74 | |
| 74 | # Quick way to export a bunch of vars at once |
75 | # Quick way to export a bunch of vars at once |
| 75 | tc-export() { |
76 | tc-export() { |
| 76 | local var |
77 | local var |
| 77 | for var in "$@" ; do |
78 | for var in "$@" ; do |
| 78 | eval tc-get${var} |
79 | eval tc-get${var} > /dev/null |
| 79 | done |
80 | done |
| 80 | } |
81 | } |
| 81 | |
82 | |
| 82 | # A simple way to see if we're using a cross-compiler ... |
83 | # A simple way to see if we're using a cross-compiler ... |
| 83 | tc-is-cross-compiler() { |
84 | tc-is-cross-compiler() { |
| 84 | if [[ -n ${CBUILD} ]] ; then |
|
|
| 85 | return $([[ ${CBUILD} != ${CHOST} ]]) |
85 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
| 86 | fi |
|
|
| 87 | return 1 |
|
|
| 88 | } |
86 | } |
| 89 | |
87 | |
| 90 | |
88 | |
| 91 | # Parse information from CBUILD/CHOST/CTARGET rather than |
89 | # Parse information from CBUILD/CHOST/CTARGET rather than |
| 92 | # use external variables from the profile. |
90 | # use external variables from the profile. |
| 93 | tc-ninja_magic_to_arch() { |
91 | tc-ninja_magic_to_arch() { |
| 94 | ninj() { [[ ${type} = "kern" ]] && echo $1 || echo $2 ; } |
92 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
| 95 | |
93 | |
| 96 | local type=$1 |
94 | local type=$1 |
| 97 | local host=$2 |
95 | local host=$2 |
| 98 | [[ -z ${host} ]] && arg=${CHOST} |
96 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 99 | |
97 | |
| 100 | case ${host} in |
98 | case ${host} in |
| 101 | alpha*) echo alpha;; |
99 | alpha*) echo alpha;; |
| 102 | x86_64*) ninj x86_64 amd64;; |
100 | x86_64*) ninj x86_64 amd64;; |
| 103 | arm*) echo arm;; |
101 | arm*) echo arm;; |
| 104 | hppa*) ninj parisc hppa;; |
102 | hppa*) ninj parisc hppa;; |
| 105 | ia64*) echo ia64;; |
103 | ia64*) echo ia64;; |
|
|
104 | m68*) echo m68k;; |
| 106 | mips*) echo mips;; |
105 | mips*) echo mips;; |
| 107 | powerpc64*) echo ppc64;; |
106 | powerpc64*) echo ppc64;; |
| 108 | powerpc*) echo ppc;; |
107 | powerpc*) [[ ${PROFILE_ARCH} == "ppc64" ]] \ |
|
|
108 | && ninj ppc64 ppc \ |
|
|
109 | || echo ppc |
|
|
110 | ;; |
| 109 | sparc64*) ninj sparc64 sparc;; |
111 | sparc64*) ninj sparc64 sparc;; |
| 110 | sparc*) echo sparc;; |
112 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
|
|
113 | && ninj sparc64 sparc \ |
|
|
114 | || echo sparc |
|
|
115 | ;; |
| 111 | s390*) echo s390;; |
116 | s390*) echo s390;; |
| 112 | sh64*) ninj sh64 sh;; |
117 | sh64*) ninj sh64 sh;; |
| 113 | sh*) echo sh;; |
118 | sh*) echo sh;; |
| 114 | i?86*) echo x86;; |
119 | i?86*) ninj i386 x86;; |
| 115 | *) echo wtf;; |
120 | *) echo ${ARCH};; |
| 116 | esac |
121 | esac |
| 117 | } |
122 | } |
| 118 | tc-arch-kernel() { |
123 | tc-arch-kernel() { |
| 119 | tc-ninja_magic_to_arch kern $@ |
124 | tc-ninja_magic_to_arch kern $@ |
| 120 | } |
125 | } |
| 121 | tc-arch() { |
126 | tc-arch() { |
| 122 | tc-ninja_magic_to_arch portage $@ |
127 | tc-ninja_magic_to_arch portage $@ |
| 123 | } |
128 | } |
| 124 | tc-endian() { |
129 | tc-endian() { |
| 125 | local host=$1 |
130 | local host=$1 |
| 126 | [[ -z ${host} ]] && host=${CHOST} |
131 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
|
|
132 | host=${host%%-*} |
| 127 | |
133 | |
| 128 | case ${host} in |
134 | case ${host} in |
| 129 | alpha*) echo big;; |
135 | alpha*) echo big;; |
| 130 | x86_64*) echo little;; |
136 | x86_64*) echo little;; |
| 131 | arm*eb-*) echo big;; |
137 | arm*b*) echo big;; |
| 132 | arm*) echo little;; |
138 | arm*) echo little;; |
| 133 | hppa*) echo big;; |
139 | hppa*) echo big;; |
| 134 | ia64*) echo little;; |
140 | ia64*) echo little;; |
| 135 | m68k*) echo big;; |
141 | m68*) echo big;; |
| 136 | mips*el-*) echo little;; |
142 | mips*l*) echo little;; |
| 137 | mips*) echo big;; |
143 | mips*) echo big;; |
| 138 | powerpc*) echo big;; |
144 | powerpc*) echo big;; |
| 139 | sparc*) echo big;; |
145 | sparc*) echo big;; |
| 140 | s390*) echo big;; |
146 | s390*) echo big;; |
| 141 | sh*el-) echo little;; |
|
|
| 142 | sh*) echo big;; |
147 | sh*b*) echo big;; |
|
|
148 | sh*) echo little;; |
| 143 | i?86*) echo little;; |
149 | i?86*) echo little;; |
| 144 | *) echo wtf;; |
150 | *) echo wtf;; |
| 145 | esac |
151 | esac |
| 146 | } |
152 | } |
| 147 | |
153 | |
| … | |
… | |
| 161 | gcc-minor-version() { |
167 | gcc-minor-version() { |
| 162 | echo "$(gcc-version | cut -f2 -d.)" |
168 | echo "$(gcc-version | cut -f2 -d.)" |
| 163 | } |
169 | } |
| 164 | # Returns the Micro version |
170 | # Returns the Micro version |
| 165 | gcc-micro-version() { |
171 | gcc-micro-version() { |
| 166 | echo "$(gcc-fullversion | cut -f3 -d.)" |
172 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
| 167 | } |
173 | } |
|
|
174 | |
|
|
175 | # Returns requested gcc specs directive |
|
|
176 | # Note; if a spec exists more than once (e.g. in more than one specs file) |
|
|
177 | # the last one read is the active definition - i.e. they do not accumulate, |
|
|
178 | # each new definition replaces any previous definition. |
|
|
179 | gcc-specs-directive() { |
|
|
180 | local specfiles=$($(tc-getCC) -v 2>&1 | grep "^Reading" | awk '{print $NF}') |
|
|
181 | [[ -z ${specfiles} ]] && return 0 |
|
|
182 | awk -v spec=$1 \ |
|
|
183 | 'BEGIN { sstr=""; outside=1 } |
|
|
184 | $1=="*"spec":" { sstr=""; outside=0; next } |
|
|
185 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
|
|
186 | { sstr=sstr $0 } |
|
|
187 | END { print sstr }' ${specfiles} |
|
|
188 | } |
|
|
189 | |
|
|
190 | # Returns true if gcc sets relro |
|
|
191 | gcc-specs-relro() { |
|
|
192 | local directive |
|
|
193 | directive=$(gcc-specs-directive link_command) |
|
|
194 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
|
|
195 | } |
|
|
196 | # Returns true if gcc sets now |
|
|
197 | gcc-specs-now() { |
|
|
198 | local directive |
|
|
199 | directive=$(gcc-specs-directive link_command) |
|
|
200 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
|
|
201 | } |
|
|
202 | # Returns true if gcc builds PIEs |
|
|
203 | gcc-specs-pie() { |
|
|
204 | local directive |
|
|
205 | directive=$(gcc-specs-directive cc1) |
|
|
206 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
|
|
207 | } |
|
|
208 | # Returns true if gcc builds with the stack protector |
|
|
209 | gcc-specs-ssp() { |
|
|
210 | local directive |
|
|
211 | directive=$(gcc-specs-directive cc1) |
|
|
212 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
|
|
213 | } |