| 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/flag-o-matic.eclass,v 1.62 2004/07/15 04:59:44 lv Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.110 2006/08/01 00:49:16 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
5 | # Maintainer: base-system@gentoo.org |
| 6 | |
6 | |
| 7 | ECLASS=flag-o-matic |
7 | # need access to emktemp() |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | inherit eutils toolchain-funcs multilib |
| 9 | IUSE="$IUSE debug" |
|
|
| 10 | |
9 | |
| 11 | # |
10 | # |
| 12 | #### filter-flags <flags> #### |
11 | #### filter-flags <flags> #### |
| 13 | # Remove particular flags from C[XX]FLAGS |
12 | # Remove particular flags from C[XX]FLAGS |
| 14 | # Matches only complete flags |
13 | # Matches only complete flags |
| … | |
… | |
| 17 | # Add extra flags to your current C[XX]FLAGS |
16 | # Add extra flags to your current C[XX]FLAGS |
| 18 | # |
17 | # |
| 19 | #### replace-flags <orig.flag> <new.flag> ### |
18 | #### replace-flags <orig.flag> <new.flag> ### |
| 20 | # Replace a flag by another one |
19 | # Replace a flag by another one |
| 21 | # |
20 | # |
| 22 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
21 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
| 23 | # Replace march/mcpu flags that specify <old.cpus> |
22 | # Replace march/mcpu flags that specify <old.cpus> |
| 24 | # with flags that specify <new.cpu> |
23 | # with flags that specify <new.cpu> |
| 25 | # |
24 | # |
| 26 | #### is-flag <flag> #### |
25 | #### is-flag[q] <flag> #### |
| 27 | # Returns "true" if flag is set in C[XX]FLAGS |
26 | # Returns "true" if flag is set in C[XX]FLAGS |
| 28 | # Matches only complete a flag |
27 | # Matches only complete a flag |
|
|
28 | # q version sets return code but doesn't echo |
|
|
29 | # |
|
|
30 | #### is-ldflag[q] <flag> #### |
|
|
31 | # Returns "true" if flag is set in LDFLAGS |
|
|
32 | # Matches only complete a flag |
|
|
33 | # q version sets return code but doesn't echo |
| 29 | # |
34 | # |
| 30 | #### strip-flags #### |
35 | #### strip-flags #### |
| 31 | # Strip C[XX]FLAGS of everything except known |
36 | # Strip C[XX]FLAGS of everything except known |
| 32 | # good options. |
37 | # good options. |
| 33 | # |
38 | # |
| … | |
… | |
| 52 | # |
57 | # |
| 53 | #### filter-ldflags <flags> #### |
58 | #### filter-ldflags <flags> #### |
| 54 | # Remove particular flags from LDFLAGS |
59 | # Remove particular flags from LDFLAGS |
| 55 | # Matches only complete flags |
60 | # Matches only complete flags |
| 56 | # |
61 | # |
| 57 | #### etexec-flags #### |
62 | #### bindnow-flags #### |
| 58 | # hooked function for hardened gcc that appends |
63 | # Returns the flags to enable "now" binding in the current selected linker. |
| 59 | # -fno-pic to {C,CXX,LD}FLAGS |
|
|
| 60 | # when a package is filtering -fpic, -fPIC, -fpie, -fPIE |
|
|
| 61 | # |
64 | # |
| 62 | #### fstack-flags #### |
65 | ################ DEPRECATED functions ################ |
| 63 | # hooked function for hardened gcc that appends |
66 | # The following are still present to avoid breaking existing |
| 64 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
67 | # code more than necessary; however they are deprecated. Please |
| 65 | # when a package is filtering -fstack-protector, -fstack-protector-all |
68 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
| 66 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
69 | # need to know which hardened techs are active in the compiler. |
| 67 | # when only -fno-stack-protector is given |
70 | # See bug #100974 |
|
|
71 | # |
|
|
72 | #### has_hardened #### |
|
|
73 | # Returns true if the compiler has 'Hardened' in its version string, |
|
|
74 | # (note; switched-spec vanilla compilers satisfy this condition) or |
|
|
75 | # the specs file name contains 'hardened'. |
|
|
76 | # |
|
|
77 | #### has_pie #### |
|
|
78 | # Returns true if the compiler by default or with current CFLAGS |
|
|
79 | # builds position-independent code. |
|
|
80 | # |
|
|
81 | #### has_pic #### |
|
|
82 | # Returns true if the compiler by default or with current CFLAGS |
|
|
83 | # builds position-independent code. |
|
|
84 | # |
|
|
85 | #### has_ssp_all #### |
|
|
86 | # Returns true if the compiler by default or with current CFLAGS |
|
|
87 | # generates stack smash protections for all functions |
|
|
88 | # |
|
|
89 | #### has_ssp #### |
|
|
90 | # Returns true if the compiler by default or with current CFLAGS |
|
|
91 | # generates stack smash protections for most vulnerable functions |
| 68 | # |
92 | # |
| 69 | |
93 | |
| 70 | # C[XX]FLAGS that we allow in strip-flags |
94 | # C[XX]FLAGS that we allow in strip-flags |
| 71 | setup-allowed-flags() { |
95 | setup-allowed-flags() { |
| 72 | if [ -z "${ALLOWED_FLAGS}" ] ; then |
96 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 73 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -fno-unit-at-a-time -pipe -g" |
97 | export ALLOWED_FLAGS="-pipe" |
| 74 | case "${ARCH}" in |
98 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 75 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
99 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 76 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC -m64" ;; |
100 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
| 77 | x86) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32" ;; |
101 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
| 78 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
102 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
| 79 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
103 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
| 80 | esac |
|
|
| 81 | fi |
104 | fi |
|
|
105 | # allow a bunch of flags that negate features / control ABI |
|
|
106 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
|
|
107 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
|
|
108 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
|
|
109 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
|
|
110 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
111 | -mieee -mieee-with-inexact -mschedule \ |
|
|
112 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
|
|
113 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
|
|
114 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
|
|
115 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias" |
| 82 | |
116 | |
| 83 | # C[XX]FLAGS that we are think is ok, but needs testing |
117 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 84 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
118 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 85 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
119 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
| 86 | return 0 |
120 | return 0 |
|
|
121 | } |
|
|
122 | |
|
|
123 | # inverted filters for hardened compiler. This is trying to unpick |
|
|
124 | # the hardened compiler defaults. |
|
|
125 | _filter-hardened() { |
|
|
126 | local f |
|
|
127 | for f in "$@" ; do |
|
|
128 | case "${f}" in |
|
|
129 | # Ideally we should only concern ourselves with PIE flags, |
|
|
130 | # not -fPIC or -fpic, but too many places filter -fPIC without |
|
|
131 | # thinking about -fPIE. |
|
|
132 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
|
|
133 | gcc-specs-pie || continue |
|
|
134 | is-flagq -nopie || append-flags -nopie;; |
|
|
135 | -fstack-protector) |
|
|
136 | gcc-specs-ssp || continue |
|
|
137 | is-flagq -fno-stack-protector || append-flags -fno-stack-protector;; |
|
|
138 | -fstack-protector-all) |
|
|
139 | gcc-specs-ssp-to-all || continue |
|
|
140 | is-flagq -fno-stack-protector-all || append-flags -fno-stack-protector-all;; |
|
|
141 | esac |
|
|
142 | done |
|
|
143 | } |
|
|
144 | |
|
|
145 | # Remove occurrences of strings from variable given in $1 |
|
|
146 | # Strings removed are matched as globs, so for example |
|
|
147 | # '-O*' would remove -O1, -O2 etc. |
|
|
148 | _filter-var() { |
|
|
149 | local f x VAR VAL |
|
|
150 | declare -a new |
|
|
151 | |
|
|
152 | VAR=$1 |
|
|
153 | shift |
|
|
154 | eval VAL=\${${VAR}} |
|
|
155 | for f in ${VAL}; do |
|
|
156 | for x in "$@"; do |
|
|
157 | # Note this should work with globs like -O* |
|
|
158 | [[ ${f} == ${x} ]] && continue 2 |
|
|
159 | done |
|
|
160 | eval new\[\${\#new\[@]}]=\${f} |
|
|
161 | done |
|
|
162 | eval export ${VAR}=\${new\[*]} |
| 87 | } |
163 | } |
| 88 | |
164 | |
| 89 | filter-flags() { |
165 | filter-flags() { |
| 90 | local x f fset |
166 | _filter-hardened "$@" |
| 91 | declare -a new_CFLAGS new_CXXFLAGS |
167 | _filter-var CFLAGS "$@" |
| 92 | |
168 | _filter-var CXXFLAGS "$@" |
| 93 | for x in "$@" ; do |
|
|
| 94 | case "${x}" in |
|
|
| 95 | -fPIC|-fpic|-fPIE|-fpie|-pie) etexec-flags;; |
|
|
| 96 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
|
|
| 97 | esac |
|
|
| 98 | done |
|
|
| 99 | |
|
|
| 100 | for fset in CFLAGS CXXFLAGS; do |
|
|
| 101 | for f in ${!fset}; do |
|
|
| 102 | for x in "$@"; do |
|
|
| 103 | # Note this should work with globs like -O* |
|
|
| 104 | [[ ${f} == ${x} ]] && continue 2 |
|
|
| 105 | done |
|
|
| 106 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
| 107 | done |
|
|
| 108 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
| 109 | done |
|
|
| 110 | |
|
|
| 111 | return 0 |
169 | return 0 |
| 112 | } |
170 | } |
| 113 | |
171 | |
| 114 | filter-lfs-flags() { |
172 | filter-lfs-flags() { |
|
|
173 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
| 115 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
174 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 116 | } |
175 | } |
| 117 | |
176 | |
| 118 | append-lfs-flags() { |
177 | append-lfs-flags() { |
|
|
178 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
| 119 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
179 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 120 | } |
180 | } |
| 121 | |
181 | |
| 122 | append-flags() { |
182 | append-flags() { |
|
|
183 | [[ -z $* ]] && return 0 |
| 123 | export CFLAGS="${CFLAGS} $*" |
184 | export CFLAGS="${CFLAGS} $*" |
| 124 | export CXXFLAGS="${CXXFLAGS} $*" |
185 | export CXXFLAGS="${CXXFLAGS} $*" |
| 125 | [ -n "`is-flag -fno-stack-protector`" -o \ |
|
|
| 126 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
|
|
| 127 | return 0 |
186 | return 0 |
| 128 | } |
187 | } |
| 129 | |
188 | |
| 130 | replace-flags() { |
189 | replace-flags() { |
| 131 | # we do this fancy spacing stuff so as to not filter |
190 | [[ $# != 2 ]] \ |
| 132 | # out part of a flag ... we want flag atoms ! :D |
191 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
| 133 | CFLAGS=" ${CFLAGS} " |
192 | && die "replace-flags takes 2 arguments, not $#" |
| 134 | CXXFLAGS=" ${CXXFLAGS} " |
193 | |
| 135 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
194 | local f fset |
| 136 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
195 | declare -a new_CFLAGS new_CXXFLAGS |
| 137 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
196 | |
| 138 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
197 | for fset in CFLAGS CXXFLAGS; do |
| 139 | export CFLAGS CXXFLAGS |
198 | # Looping over the flags instead of using a global |
|
|
199 | # substitution ensures that we're working with flag atoms. |
|
|
200 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
201 | # list of flags. |
|
|
202 | for f in ${!fset}; do |
|
|
203 | # Note this should work with globs like -O* |
|
|
204 | [[ ${f} == ${1} ]] && f=${2} |
|
|
205 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
206 | done |
|
|
207 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
208 | done |
|
|
209 | |
| 140 | return 0 |
210 | return 0 |
| 141 | } |
211 | } |
| 142 | |
212 | |
| 143 | replace-cpu-flags() { |
213 | replace-cpu-flags() { |
| 144 | local oldcpu newcpu="$1" ; shift |
214 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 145 | for oldcpu in "$@" ; do |
215 | while [ $# -gt 1 ] ; do |
|
|
216 | # quote to make sure that no globbing is done (particularly on |
|
|
217 | # ${oldcpu} prior to calling replace-flags |
| 146 | replace-flags -march=${oldcpu} -march=${newcpu} |
218 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 147 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
219 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
| 148 | replace-flags -mtune=${oldcpu} -mtune=${newcpu} |
220 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
221 | shift |
| 149 | done |
222 | done |
| 150 | return 0 |
223 | return 0 |
| 151 | } |
224 | } |
| 152 | |
225 | |
| 153 | is-flag() { |
226 | is-flagq() { |
| 154 | local x |
227 | local x |
| 155 | |
228 | |
| 156 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
229 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
230 | # Note this should work with globs like -mcpu=ultrasparc* |
| 157 | if [ "${x}" == "$1" ] ; then |
231 | if [[ ${x} == ${1} ]]; then |
| 158 | echo true |
|
|
| 159 | return 0 |
232 | return 0 |
| 160 | fi |
233 | fi |
| 161 | done |
234 | done |
| 162 | return 1 |
235 | return 1 |
| 163 | } |
236 | } |
| 164 | |
237 | |
|
|
238 | is-flag() { |
|
|
239 | if is-flagq ${1}; then |
|
|
240 | echo true |
|
|
241 | return 0 |
|
|
242 | fi |
|
|
243 | return 1 |
|
|
244 | } |
|
|
245 | |
|
|
246 | is-ldflagq() { |
|
|
247 | local x |
|
|
248 | |
|
|
249 | for x in ${LDFLAGS} ; do |
|
|
250 | # Note this should work with globs like -mcpu=ultrasparc* |
|
|
251 | if [[ ${x} == ${1} ]]; then |
|
|
252 | return 0 |
|
|
253 | fi |
|
|
254 | done |
|
|
255 | return 1 |
|
|
256 | } |
|
|
257 | |
|
|
258 | is-ldflag() { |
|
|
259 | if is-ldflagq ${1}; then |
|
|
260 | echo true |
|
|
261 | return 0 |
|
|
262 | fi |
|
|
263 | return 1 |
|
|
264 | } |
|
|
265 | |
| 165 | filter-mfpmath() { |
266 | filter-mfpmath() { |
| 166 | local orig_mfpmath new_math prune_math |
267 | local orig_mfpmath new_math prune_math |
| 167 | |
268 | |
| 168 | # save the original -mfpmath flag |
269 | # save the original -mfpmath flag |
| 169 | orig_mfpmath="`get-flag -mfpmath`" |
270 | orig_mfpmath=$(get-flag -mfpmath) |
| 170 | # get the value of the current -mfpmath flag |
271 | # get the value of the current -mfpmath flag |
| 171 | new_math=" `get-flag mfpmath | tr , ' '` " |
272 | new_math=$(get-flag mfpmath) |
|
|
273 | new_math=" ${new_math//,/ } " |
| 172 | # figure out which math values are to be removed |
274 | # figure out which math values are to be removed |
| 173 | prune_math="" |
275 | prune_math="" |
| 174 | for prune_math in "$@" ; do |
276 | for prune_math in "$@" ; do |
| 175 | new_math="${new_math/ ${prune_math} / }" |
277 | new_math=${new_math/ ${prune_math} / } |
| 176 | done |
278 | done |
| 177 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
279 | new_math=$(echo ${new_math}) |
|
|
280 | new_math=${new_math// /,} |
| 178 | |
281 | |
| 179 | if [ -z "${new_math}" ] ; then |
282 | if [[ -z ${new_math} ]] ; then |
| 180 | # if we're removing all user specified math values are |
283 | # if we're removing all user specified math values are |
| 181 | # slated for removal, then we just filter the flag |
284 | # slated for removal, then we just filter the flag |
| 182 | filter-flags ${orig_mfpmath} |
285 | filter-flags ${orig_mfpmath} |
| 183 | else |
286 | else |
| 184 | # if we only want to filter some of the user specified |
287 | # if we only want to filter some of the user specified |
| … | |
… | |
| 195 | |
298 | |
| 196 | local NEW_CFLAGS="" |
299 | local NEW_CFLAGS="" |
| 197 | local NEW_CXXFLAGS="" |
300 | local NEW_CXXFLAGS="" |
| 198 | |
301 | |
| 199 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
302 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 200 | if has ~${ARCH} ${ACCEPT_KEYWORDS} ; then |
303 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 201 | use debug && einfo "Enabling the use of some unstable flags" |
|
|
| 202 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
304 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 203 | fi |
305 | fi |
| 204 | |
306 | |
| 205 | set -f # disable pathname expansion |
307 | set -f # disable pathname expansion |
| 206 | |
308 | |
| 207 | for x in ${CFLAGS}; do |
309 | for x in ${CFLAGS}; do |
| 208 | for y in ${ALLOWED_FLAGS}; do |
310 | for y in ${ALLOWED_FLAGS}; do |
| 209 | flag=${x%%=*} |
311 | flag=${x%%=*} |
| 210 | if [ "${flag%%${y}}" = "" ]; then |
312 | if [ "${flag%%${y}}" = "" ] ; then |
| 211 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
313 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 212 | break |
314 | break |
| 213 | fi |
315 | fi |
| 214 | done |
316 | done |
| 215 | done |
317 | done |
| 216 | |
318 | |
| 217 | for x in ${CXXFLAGS}; do |
319 | for x in ${CXXFLAGS}; do |
| 218 | for y in ${ALLOWED_FLAGS}; do |
320 | for y in ${ALLOWED_FLAGS}; do |
| 219 | flag=${x%%=*} |
321 | flag=${x%%=*} |
| 220 | if [ "${flag%%${y}}" = "" ]; then |
322 | if [ "${flag%%${y}}" = "" ] ; then |
| 221 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
323 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 222 | break |
324 | break |
| 223 | fi |
325 | fi |
| 224 | done |
326 | done |
| 225 | done |
327 | done |
| … | |
… | |
| 237 | export CFLAGS="${NEW_CFLAGS}" |
339 | export CFLAGS="${NEW_CFLAGS}" |
| 238 | export CXXFLAGS="${NEW_CXXFLAGS}" |
340 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 239 | return 0 |
341 | return 0 |
| 240 | } |
342 | } |
| 241 | |
343 | |
|
|
344 | test-flag-PROG() { |
|
|
345 | local comp=$1 |
|
|
346 | local flags="$2" |
|
|
347 | |
|
|
348 | [[ -z ${comp} || -z ${flags} ]] && \ |
|
|
349 | return 1 |
|
|
350 | |
|
|
351 | local PROG=$(tc-get${comp}) |
|
|
352 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
|
|
353 | > /dev/null 2>&1 |
|
|
354 | } |
|
|
355 | |
|
|
356 | # Returns true if C compiler support given flag |
|
|
357 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
|
|
358 | |
|
|
359 | # Returns true if C++ compiler support given flag |
|
|
360 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
361 | |
|
|
362 | test-flags-PROG() { |
|
|
363 | local comp=$1 |
|
|
364 | local flags |
|
|
365 | local x |
|
|
366 | |
|
|
367 | shift |
|
|
368 | |
|
|
369 | [[ -z ${comp} ]] && \ |
|
|
370 | return 1 |
|
|
371 | |
|
|
372 | for x in "$@" ; do |
|
|
373 | test-flag-${comp} "${x}" && flags="${flags} ${x}" |
|
|
374 | done |
|
|
375 | |
|
|
376 | echo "${flags}" |
|
|
377 | |
|
|
378 | # Just bail if we dont have any flags |
|
|
379 | [[ -n ${flags} ]] |
|
|
380 | } |
|
|
381 | |
|
|
382 | # Returns (echo's) the given flags supported by the C compiler |
|
|
383 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
|
|
384 | |
|
|
385 | # Returns (echo's) the given flags supported by the C++ compiler |
|
|
386 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
|
|
387 | |
|
|
388 | # Short-hand that should hopefully work for both C and C++ compiler, but |
|
|
389 | # its really only present due to the append-flags() abomination. |
|
|
390 | test-flags() { test-flags-CC "$@"; } |
|
|
391 | |
|
|
392 | # Depriciated, use test-flags() |
| 242 | test_flag() { |
393 | test_flag() { |
| 243 | local cc=${CC:-gcc} ; cc=${cc%% *} |
394 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
| 244 | if ${cc} -S -xc "$@" -o /dev/null /dev/null &>/dev/null; then |
395 | |
| 245 | printf "%s\n" "$*" |
396 | test-flags-CC "$@" |
| 246 | return 0 |
|
|
| 247 | fi |
|
|
| 248 | return 1 |
|
|
| 249 | } |
397 | } |
| 250 | |
398 | |
| 251 | test_version_info() { |
399 | test_version_info() { |
| 252 | local cc=${CC:-gcc} ; cc=${cc%% *} |
|
|
| 253 | if [[ $(${cc} --version 2>&1) == *$1* ]]; then |
400 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 254 | return 0 |
401 | return 0 |
| 255 | else |
402 | else |
| 256 | return 1 |
403 | return 1 |
| 257 | fi |
404 | fi |
| 258 | } |
405 | } |
| 259 | |
406 | |
| 260 | strip-unsupported-flags() { |
407 | strip-unsupported-flags() { |
| 261 | local NEW_CFLAGS NEW_CXXFLAGS |
408 | local x NEW_CFLAGS NEW_CXXFLAGS |
| 262 | |
409 | |
| 263 | for x in ${CFLAGS} ; do |
410 | for x in ${CFLAGS} ; do |
| 264 | NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`" |
411 | NEW_CFLAGS="${NEW_CFLAGS} $(test-flags ${x})" |
| 265 | done |
412 | done |
| 266 | for x in ${CXXFLAGS} ; do |
413 | for x in ${CXXFLAGS} ; do |
| 267 | NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`" |
414 | NEW_CXXFLAGS="${NEW_CXXFLAGS} $(test-flags ${x})" |
| 268 | done |
415 | done |
| 269 | |
416 | |
| 270 | export CFLAGS="${NEW_CFLAGS}" |
417 | export CFLAGS=${NEW_CFLAGS} |
| 271 | export CXXFLAGS="${NEW_CXXFLAGS}" |
418 | export CXXFLAGS=${NEW_CXXFLAGS} |
| 272 | } |
419 | } |
| 273 | |
420 | |
| 274 | get-flag() { |
421 | get-flag() { |
| 275 | local f findflag="$1" |
422 | local f findflag="$1" |
| 276 | |
423 | |
| … | |
… | |
| 286 | fi |
433 | fi |
| 287 | done |
434 | done |
| 288 | return 1 |
435 | return 1 |
| 289 | } |
436 | } |
| 290 | |
437 | |
|
|
438 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
| 291 | has_hardened() { |
439 | has_hardened() { |
|
|
440 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
|
|
441 | |
| 292 | test_version_info Hardened |
442 | test_version_info Hardened && return 0 |
| 293 | return $? |
443 | # The specs file wont exist unless gcc has GCC_SPECS support |
|
|
444 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
| 294 | } |
445 | } |
| 295 | |
446 | |
|
|
447 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
448 | # indicate whether PIC is set |
| 296 | has_pic() { |
449 | has_pic() { |
| 297 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
450 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
| 298 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
|
|
| 299 | test_version_info pie && return 0 |
|
|
| 300 | return 1 |
|
|
| 301 | } |
|
|
| 302 | |
451 | |
|
|
452 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
453 | ${CFLAGS/-fpic} != ${CFLAGS} ]] || \ |
|
|
454 | gcc-specs-pie |
|
|
455 | } |
|
|
456 | |
|
|
457 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
458 | # indicate whether PIE is set |
| 303 | has_pie() { |
459 | has_pie() { |
| 304 | [ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0 |
460 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
| 305 | [ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0 |
461 | |
| 306 | test_version_info pie && return 0 |
462 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
| 307 | return 1 |
463 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
|
|
464 | gcc-specs-pie |
| 308 | } |
465 | } |
| 309 | |
466 | |
|
|
467 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
468 | # indicate whether code for SSP is being generated for all functions |
|
|
469 | has_ssp_all() { |
|
|
470 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
|
|
471 | |
|
|
472 | # note; this matches only -fstack-protector-all |
|
|
473 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
|
|
474 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
|
|
475 | gcc-specs-ssp-all |
|
|
476 | } |
|
|
477 | |
|
|
478 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
479 | # indicate whether code for SSP is being generated |
| 310 | has_ssp() { |
480 | has_ssp() { |
|
|
481 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
|
|
482 | |
|
|
483 | # note; this matches both -fstack-protector and -fstack-protector-all |
| 311 | [ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0 |
484 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
| 312 | test_version_info ssp && return 0 |
485 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
| 313 | return 1 |
486 | gcc-specs-ssp |
| 314 | } |
487 | } |
| 315 | |
488 | |
| 316 | has_m64() { |
489 | has_m64() { |
| 317 | # this doesnt test if the flag is accepted, it tests if the flag |
490 | # this doesnt test if the flag is accepted, it tests if the flag |
| 318 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
491 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 319 | # please dont replace this function with test_flag in some future |
492 | # please dont replace this function with test_flag in some future |
| 320 | # clean-up! |
493 | # clean-up! |
| 321 | temp=`mktemp` |
494 | |
|
|
495 | local temp="$(emktemp)" |
| 322 | echo "int main() { return(0); }" > ${temp}.c |
496 | echo "int main() { return(0); }" > "${temp}".c |
| 323 | ${CC/ .*/} -m64 -o /dev/null ${temp}.c > /dev/null 2>&1 |
497 | MY_CC=$(tc-getCC) |
| 324 | ret=$? |
498 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
499 | local ret=$? |
| 325 | rm -f ${temp}.c |
500 | rm -f "${temp}".c |
| 326 | [ "$ret" != "1" ] && return 0 |
501 | [[ ${ret} != 1 ]] && return 0 |
| 327 | return 1 |
502 | return 1 |
| 328 | } |
503 | } |
| 329 | |
504 | |
| 330 | has_m32() { |
505 | has_m32() { |
| 331 | # this doesnt test if the flag is accepted, it tests if the flag |
506 | # this doesnt test if the flag is accepted, it tests if the flag |
| 332 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
507 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 333 | # please dont replace this function with test_flag in some future |
508 | # please dont replace this function with test_flag in some future |
| 334 | # clean-up! |
509 | # clean-up! |
| 335 | temp=`mktemp` |
510 | |
|
|
511 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
512 | |
|
|
513 | local temp=$(emktemp) |
| 336 | echo "int main() { return(0); }" > ${temp}.c |
514 | echo "int main() { return(0); }" > "${temp}".c |
| 337 | ${CC/ .*/} -m32 -o /dev/null ${temp}.c > /dev/null 2>&1 |
515 | MY_CC=$(tc-getCC) |
| 338 | ret=$? |
516 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
517 | local ret=$? |
| 339 | rm -f ${temp}.c |
518 | rm -f "${temp}".c |
| 340 | [ "$ret" != "1" ] && return 0 |
519 | [[ ${ret} != 1 ]] && return 0 |
| 341 | return 1 |
520 | return 1 |
| 342 | } |
521 | } |
| 343 | |
522 | |
| 344 | replace-sparc64-flags() { |
523 | replace-sparc64-flags() { |
| 345 | local SPARC64_CPUS="ultrasparc v9" |
524 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 346 | |
525 | |
| 347 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
526 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 348 | for x in ${SPARC64_CPUS}; do |
527 | for x in ${SPARC64_CPUS}; do |
| 349 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
528 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 350 | done |
529 | done |
| 351 | else |
530 | else |
| 352 | for x in ${SPARC64_CPUS}; do |
531 | for x in ${SPARC64_CPUS}; do |
| 353 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
532 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 354 | done |
533 | done |
| 355 | fi |
534 | fi |
| 356 | |
535 | |
| 357 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
536 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 358 | for x in ${SPARC64_CPUS}; do |
537 | for x in ${SPARC64_CPUS}; do |
| 359 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
538 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 360 | done |
539 | done |
| 361 | else |
540 | else |
| 362 | for x in ${SPARC64_CPUS}; do |
541 | for x in ${SPARC64_CPUS}; do |
| … | |
… | |
| 366 | |
545 | |
| 367 | export CFLAGS CXXFLAGS |
546 | export CFLAGS CXXFLAGS |
| 368 | } |
547 | } |
| 369 | |
548 | |
| 370 | append-ldflags() { |
549 | append-ldflags() { |
|
|
550 | [[ -z $* ]] && return 0 |
| 371 | export LDFLAGS="${LDFLAGS} $*" |
551 | export LDFLAGS="${LDFLAGS} $*" |
| 372 | return 0 |
552 | return 0 |
| 373 | } |
553 | } |
| 374 | |
554 | |
|
|
555 | # Remove flags from LDFLAGS - it's up to the ebuild to filter |
|
|
556 | # CFLAGS and CXXFLAGS via filter-flags if they need to. |
| 375 | filter-ldflags() { |
557 | filter-ldflags() { |
| 376 | local x |
558 | _filter-var LDFLAGS "$@" |
|
|
559 | return 0 |
|
|
560 | } |
| 377 | |
561 | |
| 378 | # we do this fancy spacing stuff so as to not filter |
562 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 379 | # out part of a flag ... we want flag atoms ! :D |
563 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 380 | LDFLAGS=" ${LDFLAGS} " |
564 | # to gcc where it needs the '-Wl,'. |
|
|
565 | raw-ldflags() { |
|
|
566 | local x input="$@" |
|
|
567 | [[ -z ${input} ]] && input=${LDFLAGS} |
|
|
568 | set -- |
| 381 | for x in "$@" ; do |
569 | for x in ${input} ; do |
| 382 | LDFLAGS="${LDFLAGS// ${x} / }" |
570 | x=${x#-Wl,} |
|
|
571 | set -- "$@" ${x//,/ } |
| 383 | done |
572 | done |
| 384 | LDFLAGS="${LDFLAGS:1:${#LDFLAGS}-2}" |
573 | echo "$@" |
| 385 | export LDFLAGS |
|
|
| 386 | return 0 |
|
|
| 387 | } |
574 | } |
| 388 | |
575 | |
| 389 | etexec-flags() { |
576 | # This is thanks to great work from Paul de Vrieze <gentoo-user@devrieze.net>, |
| 390 | # if you're not using a hardened compiler you wont need this |
577 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
| 391 | # PIC/no-pic kludge in the first place. |
578 | # fixes. |
| 392 | has_hardened || return 0 |
579 | # |
| 393 | |
580 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
| 394 | if has_pie || has_pic; then |
581 | gcc2-flags() { |
| 395 | [ -z "`is-flag -fno-pic`" ] && |
582 | if [[ $(tc-arch) == "x86" || $(tc-arch) == "amd64" ]] ; then |
| 396 | export CFLAGS="${CFLAGS} `test_flag -fno-pic`" |
583 | CFLAGS=${CFLAGS//-mtune=/-mcpu=} |
| 397 | [ -z "`is-flag -nopie`" ] && |
584 | CXXFLAGS=${CXXFLAGS//-mtune=/-mcpu=} |
| 398 | export CFLAGS="${CFLAGS} `test_flag -nopie`" |
|
|
| 399 | fi |
585 | fi |
| 400 | return 0 |
|
|
| 401 | } |
|
|
| 402 | |
586 | |
| 403 | fstack-flags() { |
587 | replace-cpu-flags k6-{2,3} k6 |
| 404 | if has_ssp; then |
588 | replace-cpu-flags athlon{,-{tbird,4,xp,mp}} i686 |
| 405 | [ -z "`is-flag -fno-stack-protector`" ] && |
589 | |
| 406 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
590 | replace-cpu-flags pentium-mmx i586 |
| 407 | fi |
591 | replace-cpu-flags pentium{2,3,4} i686 |
| 408 | return 0 |
592 | |
|
|
593 | replace-cpu-flags ev6{7,8} ev6 |
|
|
594 | |
|
|
595 | export CFLAGS CXXFLAGS |
| 409 | } |
596 | } |
|
|
597 | |
|
|
598 | # Gets the flags needed for "NOW" binding |
|
|
599 | bindnow-flags() { |
|
|
600 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
601 | *GNU* | *'with BFD'*) # GNU ld |
|
|
602 | echo "-Wl,-z,now" ;; |
|
|
603 | *Apple*) # Darwin ld |
|
|
604 | echo "-bind_at_load" ;; |
|
|
605 | *) |
|
|
606 | # Some linkers just recognize -V instead of -v |
|
|
607 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
608 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
609 | echo "-Wl,-z,now" ;; |
|
|
610 | esac |
|
|
611 | ;; |
|
|
612 | esac |
|
|
613 | } |