1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2012 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.154 2011/08/17 17:59:35 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.173 2012/05/31 00:29:06 vapier Exp $ |
4 | |
4 | |
5 | # @ECLASS: flag-o-matic.eclass |
5 | # @ECLASS: flag-o-matic.eclass |
6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
7 | # toolchain@gentoo.org |
7 | # toolchain@gentoo.org |
8 | # @BLURB: common functions to manipulate and query toolchain flags |
8 | # @BLURB: common functions to manipulate and query toolchain flags |
9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
10 | # This eclass contains a suite of functions to help developers sanely |
10 | # This eclass contains a suite of functions to help developers sanely |
11 | # and safely manage toolchain flags in their builds. |
11 | # and safely manage toolchain flags in their builds. |
12 | |
12 | |
|
|
13 | if [[ ${___ECLASS_ONCE_FLAG_O_MATIC} != "recur -_+^+_- spank" ]] ; then |
|
|
14 | ___ECLASS_ONCE_FLAG_O_MATIC="recur -_+^+_- spank" |
|
|
15 | |
13 | inherit eutils toolchain-funcs multilib |
16 | inherit eutils toolchain-funcs multilib |
14 | |
17 | |
15 | ################ DEPRECATED functions ################ |
18 | # Return all the flag variables that our high level funcs operate on. |
16 | # The following are still present to avoid breaking existing |
19 | all-flag-vars() { |
17 | # code more than necessary; however they are deprecated. Please |
20 | echo {C,CPP,CXX,CCAS,F,FC,LD}FLAGS |
18 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
21 | } |
19 | # need to know which hardened techs are active in the compiler. |
|
|
20 | # See bug #100974 |
|
|
21 | # |
|
|
22 | # has_hardened |
|
|
23 | # has_pie |
|
|
24 | # has_pic |
|
|
25 | # has_ssp_all |
|
|
26 | # has_ssp |
|
|
27 | |
|
|
28 | |
22 | |
29 | # {C,CXX,F,FC}FLAGS that we allow in strip-flags |
23 | # {C,CXX,F,FC}FLAGS that we allow in strip-flags |
30 | # Note: shell globs and character lists are allowed |
24 | # Note: shell globs and character lists are allowed |
31 | setup-allowed-flags() { |
25 | setup-allowed-flags() { |
32 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
|
|
33 | export ALLOWED_FLAGS="-pipe" |
26 | ALLOWED_FLAGS="-pipe" |
34 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
27 | ALLOWED_FLAGS+=" -O -O1 -O2 -Os -mcpu -march -mtune" |
35 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
28 | ALLOWED_FLAGS+=" -fstack-protector -fstack-protector-all" |
36 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-strict-overflow" |
29 | ALLOWED_FLAGS+=" -fbounds-checking -fno-strict-overflow" |
37 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
30 | ALLOWED_FLAGS+=" -fno-PIE -fno-pie -fno-unit-at-a-time" |
38 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
31 | ALLOWED_FLAGS+=" -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
39 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident -fpermissive" |
32 | ALLOWED_FLAGS+=" -fno-ident -fpermissive" |
40 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -W* -w" |
33 | ALLOWED_FLAGS+=" -W* -w" |
41 | fi |
34 | |
42 | # allow a bunch of flags that negate features / control ABI |
35 | # allow a bunch of flags that negate features / control ABI |
43 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all \ |
36 | ALLOWED_FLAGS+=" -fno-stack-protector -fno-stack-protector-all \ |
44 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow -fno-omit-frame-pointer" |
37 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow \ |
|
|
38 | -fno-omit-frame-pointer" |
45 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
39 | ALLOWED_FLAGS+=" -mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse \ |
46 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 \ |
40 | -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 \ |
47 | -mno-sse4.2 -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow \ |
41 | -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt \ |
48 | -mno-popcnt -mno-abm \ |
|
|
49 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \ |
42 | -mno-abm -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \ |
50 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
43 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
51 | -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \ |
44 | -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \ |
52 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
45 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs -mflat -mno-flat \ |
53 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
46 | -mno-faster-structs -mfaster-structs -m32 -m64 -mx32 -mabi \ |
54 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
47 | -mlittle-endian -mbig-endian -EL -EB -fPIC -mlive-g0 -mcmodel \ |
55 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
48 | -mstack-bias -mno-stack-bias -msecure-plt -m*-toc -D* -U*" |
56 | -msecure-plt -m*-toc -D* -U*" |
|
|
57 | |
49 | |
58 | # 4.5 |
50 | # 4.5 |
59 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-fma4 -mno-movbe -mno-xop -mno-lwp" |
51 | ALLOWED_FLAGS+=" -mno-fma4 -mno-movbe -mno-xop -mno-lwp" |
60 | # 4.6 |
52 | # 4.6 |
61 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-fsgsbase -mno-rdrnd -mno-f16c \ |
53 | ALLOWED_FLAGS+=" -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm" |
62 | -mno-bmi -mno-tbm" |
|
|
63 | |
54 | |
64 | # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing |
55 | export ALLOWED_FLAGS |
65 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
|
|
66 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
|
|
67 | return 0 |
56 | return 0 |
68 | } |
57 | } |
69 | |
58 | |
70 | # inverted filters for hardened compiler. This is trying to unpick |
59 | # inverted filters for hardened compiler. This is trying to unpick |
71 | # the hardened compiler defaults. |
60 | # the hardened compiler defaults. |
… | |
… | |
94 | |
83 | |
95 | # Remove occurrences of strings from variable given in $1 |
84 | # Remove occurrences of strings from variable given in $1 |
96 | # Strings removed are matched as globs, so for example |
85 | # Strings removed are matched as globs, so for example |
97 | # '-O*' would remove -O1, -O2 etc. |
86 | # '-O*' would remove -O1, -O2 etc. |
98 | _filter-var() { |
87 | _filter-var() { |
99 | local f x VAR VAL |
88 | local f x var=$1 new=() |
100 | declare -a new |
|
|
101 | |
|
|
102 | VAR=$1 |
|
|
103 | shift |
89 | shift |
104 | eval VAL=\${${VAR}} |
90 | |
105 | for f in ${VAL}; do |
91 | for f in ${!var} ; do |
106 | for x in "$@"; do |
92 | for x in "$@" ; do |
107 | # Note this should work with globs like -O* |
93 | # Note this should work with globs like -O* |
108 | [[ ${f} == ${x} ]] && continue 2 |
94 | [[ ${f} == ${x} ]] && continue 2 |
109 | done |
95 | done |
110 | eval new\[\${\#new\[@]}]=\${f} |
96 | new+=( "${f}" ) |
111 | done |
97 | done |
112 | eval export ${VAR}=\${new\[*]} |
98 | eval export ${var}=\""${new[*]}"\" |
113 | } |
99 | } |
114 | |
100 | |
115 | # @FUNCTION: filter-flags |
101 | # @FUNCTION: filter-flags |
116 | # @USAGE: <flags> |
102 | # @USAGE: <flags> |
117 | # @DESCRIPTION: |
103 | # @DESCRIPTION: |
118 | # Remove particular <flags> from {C,CPP,CXX,F,FC}FLAGS. Accepts shell globs. |
104 | # Remove particular <flags> from {C,CPP,CXX,CCAS,F,FC,LD}FLAGS. Accepts shell globs. |
119 | filter-flags() { |
105 | filter-flags() { |
120 | _filter-hardened "$@" |
106 | _filter-hardened "$@" |
|
|
107 | local v |
|
|
108 | for v in $(all-flag-vars) ; do |
121 | _filter-var CFLAGS "$@" |
109 | _filter-var ${v} "$@" |
122 | _filter-var CPPFLAGS "$@" |
110 | done |
123 | _filter-var CXXFLAGS "$@" |
|
|
124 | _filter-var FFLAGS "$@" |
|
|
125 | _filter-var FCFLAGS "$@" |
|
|
126 | return 0 |
111 | return 0 |
127 | } |
112 | } |
128 | |
113 | |
129 | # @FUNCTION: filter-lfs-flags |
114 | # @FUNCTION: filter-lfs-flags |
130 | # @DESCRIPTION: |
115 | # @DESCRIPTION: |
… | |
… | |
136 | # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...) |
121 | # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...) |
137 | # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t) |
122 | # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t) |
138 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
123 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
139 | } |
124 | } |
140 | |
125 | |
|
|
126 | # @FUNCTION: filter-ldflags |
|
|
127 | # @USAGE: <flags> |
|
|
128 | # @DESCRIPTION: |
|
|
129 | # Remove particular <flags> from LDFLAGS. Accepts shell globs. |
|
|
130 | filter-ldflags() { |
|
|
131 | _filter-var LDFLAGS "$@" |
|
|
132 | return 0 |
|
|
133 | } |
|
|
134 | |
141 | # @FUNCTION: append-cppflags |
135 | # @FUNCTION: append-cppflags |
142 | # @USAGE: <flags> |
136 | # @USAGE: <flags> |
143 | # @DESCRIPTION: |
137 | # @DESCRIPTION: |
144 | # Add extra <flags> to the current CPPFLAGS. |
138 | # Add extra <flags> to the current CPPFLAGS. |
145 | append-cppflags() { |
139 | append-cppflags() { |
146 | [[ -z $* ]] && return 0 |
140 | [[ $# -eq 0 ]] && return 0 |
147 | export CPPFLAGS="${CPPFLAGS} $*" |
141 | export CPPFLAGS="${CPPFLAGS} $*" |
148 | return 0 |
142 | return 0 |
149 | } |
143 | } |
150 | |
144 | |
151 | # @FUNCTION: append-cflags |
145 | # @FUNCTION: append-cflags |
152 | # @USAGE: <flags> |
146 | # @USAGE: <flags> |
153 | # @DESCRIPTION: |
147 | # @DESCRIPTION: |
154 | # Add extra <flags> to the current CFLAGS. |
148 | # Add extra <flags> to the current CFLAGS. |
155 | append-cflags() { |
149 | append-cflags() { |
156 | [[ -z $* ]] && return 0 |
150 | [[ $# -eq 0 ]] && return 0 |
157 | export CFLAGS="${CFLAGS} $*" |
151 | export CFLAGS=$(test-flags-CC ${CFLAGS} "$@") |
158 | return 0 |
152 | return 0 |
159 | } |
153 | } |
160 | |
154 | |
161 | # @FUNCTION: append-cxxflags |
155 | # @FUNCTION: append-cxxflags |
162 | # @USAGE: <flags> |
156 | # @USAGE: <flags> |
163 | # @DESCRIPTION: |
157 | # @DESCRIPTION: |
164 | # Add extra <flags> to the current CXXFLAGS. |
158 | # Add extra <flags> to the current CXXFLAGS. |
165 | append-cxxflags() { |
159 | append-cxxflags() { |
166 | [[ -z $* ]] && return 0 |
160 | [[ $# -eq 0 ]] && return 0 |
167 | export CXXFLAGS="${CXXFLAGS} $*" |
161 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS} "$@") |
168 | return 0 |
162 | return 0 |
169 | } |
163 | } |
170 | |
164 | |
171 | # @FUNCTION: append-fflags |
165 | # @FUNCTION: append-fflags |
172 | # @USAGE: <flags> |
166 | # @USAGE: <flags> |
173 | # @DESCRIPTION: |
167 | # @DESCRIPTION: |
174 | # Add extra <flags> to the current {F,FC}FLAGS. |
168 | # Add extra <flags> to the current {F,FC}FLAGS. |
175 | append-fflags() { |
169 | append-fflags() { |
176 | [[ -z $* ]] && return 0 |
170 | [[ $# -eq 0 ]] && return 0 |
177 | export FFLAGS="${FFLAGS} $*" |
171 | export FFLAGS=$(test-flags-F77 ${FFLAGS} "$@") |
178 | export FCFLAGS="${FCFLAGS} $*" |
172 | export FCFLAGS=$(test-flags-FC ${FCFLAGS} "$@") |
179 | return 0 |
173 | return 0 |
180 | } |
174 | } |
181 | |
175 | |
182 | # @FUNCTION: append-lfs-flags |
176 | # @FUNCTION: append-lfs-flags |
183 | # @DESCRIPTION: |
177 | # @DESCRIPTION: |
184 | # Add flags that enable Large File Support. |
178 | # Add flags that enable Large File Support. |
185 | append-lfs-flags() { |
179 | append-lfs-flags() { |
186 | [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments" |
180 | [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments" |
|
|
181 | # see comments in filter-lfs-flags func for meaning of these |
187 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
182 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
183 | } |
|
|
184 | |
|
|
185 | # @FUNCTION: append-ldflags |
|
|
186 | # @USAGE: <flags> |
|
|
187 | # @DESCRIPTION: |
|
|
188 | # Add extra <flags> to the current LDFLAGS. |
|
|
189 | append-ldflags() { |
|
|
190 | [[ $# -eq 0 ]] && return 0 |
|
|
191 | local flag |
|
|
192 | for flag in "$@"; do |
|
|
193 | [[ ${flag} == -l* ]] && \ |
|
|
194 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
|
|
195 | done |
|
|
196 | |
|
|
197 | export LDFLAGS="${LDFLAGS} $*" |
|
|
198 | return 0 |
188 | } |
199 | } |
189 | |
200 | |
190 | # @FUNCTION: append-flags |
201 | # @FUNCTION: append-flags |
191 | # @USAGE: <flags> |
202 | # @USAGE: <flags> |
192 | # @DESCRIPTION: |
203 | # @DESCRIPTION: |
193 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
204 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
194 | append-flags() { |
205 | append-flags() { |
195 | [[ -z $* ]] && return 0 |
206 | [[ $# -eq 0 ]] && return 0 |
|
|
207 | case " $* " in |
|
|
208 | *' '-[DIU]*) eqawarn 'please use append-cppflags for preprocessor flags' ;; |
|
|
209 | *' '-L*|\ |
|
|
210 | *' '-Wl,*) eqawarn 'please use append-ldflags for linker flags' ;; |
|
|
211 | esac |
196 | append-cflags "$@" |
212 | append-cflags "$@" |
197 | append-cxxflags "$@" |
213 | append-cxxflags "$@" |
198 | append-fflags "$@" |
214 | append-fflags "$@" |
199 | return 0 |
215 | return 0 |
200 | } |
216 | } |
… | |
… | |
202 | # @FUNCTION: replace-flags |
218 | # @FUNCTION: replace-flags |
203 | # @USAGE: <old> <new> |
219 | # @USAGE: <old> <new> |
204 | # @DESCRIPTION: |
220 | # @DESCRIPTION: |
205 | # Replace the <old> flag with <new>. Accepts shell globs for <old>. |
221 | # Replace the <old> flag with <new>. Accepts shell globs for <old>. |
206 | replace-flags() { |
222 | replace-flags() { |
207 | [[ $# != 2 ]] \ |
|
|
208 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
223 | [[ $# != 2 ]] && die "Usage: replace-flags <old flag> <new flag>" |
209 | && die "replace-flags takes 2 arguments, not $#" |
|
|
210 | |
224 | |
211 | local f fset |
225 | local f var new |
212 | declare -a new_CFLAGS new_CXXFLAGS new_FFLAGS new_FCFLAGS |
226 | for var in $(all-flag-vars) ; do |
213 | |
|
|
214 | for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do |
|
|
215 | # Looping over the flags instead of using a global |
227 | # Looping over the flags instead of using a global |
216 | # substitution ensures that we're working with flag atoms. |
228 | # substitution ensures that we're working with flag atoms. |
217 | # Otherwise globs like -O* have the potential to wipe out the |
229 | # Otherwise globs like -O* have the potential to wipe out the |
218 | # list of flags. |
230 | # list of flags. |
|
|
231 | new=() |
219 | for f in ${!fset}; do |
232 | for f in ${!var} ; do |
220 | # Note this should work with globs like -O* |
233 | # Note this should work with globs like -O* |
221 | [[ ${f} == ${1} ]] && f=${2} |
234 | [[ ${f} == ${1} ]] && f=${2} |
222 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
235 | new+=( "${f}" ) |
223 | done |
236 | done |
224 | eval export ${fset}=\${new_${fset}\[*]} |
237 | eval export ${var}=\""${new[*]}"\" |
225 | done |
238 | done |
226 | |
239 | |
227 | return 0 |
240 | return 0 |
228 | } |
241 | } |
229 | |
242 | |
… | |
… | |
257 | # @USAGE: <flag> |
270 | # @USAGE: <flag> |
258 | # @DESCRIPTION: |
271 | # @DESCRIPTION: |
259 | # Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false. Accepts shell globs. |
272 | # Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false. Accepts shell globs. |
260 | is-flagq() { |
273 | is-flagq() { |
261 | [[ -n $2 ]] && die "Usage: is-flag <flag>" |
274 | [[ -n $2 ]] && die "Usage: is-flag <flag>" |
262 | _is_flagq CFLAGS $1 || _is_flagq CXXFLAGS $1 || _is_flagq FFLAGS $1 || _is_flagq FCFLAGS $1 |
275 | |
|
|
276 | local var |
|
|
277 | for var in $(all-flag-vars) ; do |
|
|
278 | _is_flagq ${var} "$1" && return 0 |
|
|
279 | done |
|
|
280 | return 1 |
263 | } |
281 | } |
264 | |
282 | |
265 | # @FUNCTION: is-flag |
283 | # @FUNCTION: is-flag |
266 | # @USAGE: <flag> |
284 | # @USAGE: <flag> |
267 | # @DESCRIPTION: |
285 | # @DESCRIPTION: |
… | |
… | |
323 | |
341 | |
324 | # @FUNCTION: strip-flags |
342 | # @FUNCTION: strip-flags |
325 | # @DESCRIPTION: |
343 | # @DESCRIPTION: |
326 | # Strip C[XX]FLAGS of everything except known good/safe flags. |
344 | # Strip C[XX]FLAGS of everything except known good/safe flags. |
327 | strip-flags() { |
345 | strip-flags() { |
328 | local x y flag NEW_CFLAGS NEW_CXXFLAGS NEW_FFLAGS NEW_FCFLAGS |
346 | local x y var |
329 | |
347 | |
330 | setup-allowed-flags |
348 | setup-allowed-flags |
331 | |
349 | |
332 | local NEW_CFLAGS="" |
|
|
333 | local NEW_CXXFLAGS="" |
|
|
334 | local NEW_FFLAGS="" |
|
|
335 | local NEW_FCFLAGS="" |
|
|
336 | |
|
|
337 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
|
|
338 | if has "~$(tc-arch)" ${ACCEPT_KEYWORDS} ; then |
|
|
339 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
|
|
340 | fi |
|
|
341 | |
|
|
342 | set -f # disable pathname expansion |
350 | set -f # disable pathname expansion |
343 | |
351 | |
344 | for x in ${CFLAGS}; do |
352 | for var in $(all-flag-vars) ; do |
|
|
353 | local new=() |
|
|
354 | |
|
|
355 | for x in ${!var} ; do |
|
|
356 | local flag=${x%%=*} |
345 | for y in ${ALLOWED_FLAGS}; do |
357 | for y in ${ALLOWED_FLAGS} ; do |
346 | flag=${x%%=*} |
|
|
347 | if [ "${flag%%${y}}" = "" ] ; then |
358 | if [[ -z ${flag%%${y}} ]] ; then |
348 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
359 | new+=( "${x}" ) |
349 | break |
360 | break |
350 | fi |
361 | fi |
351 | done |
362 | done |
352 | done |
363 | done |
353 | |
364 | |
354 | for x in ${CXXFLAGS}; do |
|
|
355 | for y in ${ALLOWED_FLAGS}; do |
|
|
356 | flag=${x%%=*} |
|
|
357 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
358 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
|
|
359 | break |
|
|
360 | fi |
|
|
361 | done |
|
|
362 | done |
|
|
363 | |
|
|
364 | for x in ${FFLAGS}; do |
|
|
365 | for y in ${ALLOWED_FLAGS}; do |
|
|
366 | flag=${x%%=*} |
|
|
367 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
368 | NEW_FFLAGS="${NEW_FFLAGS} ${x}" |
|
|
369 | break |
|
|
370 | fi |
|
|
371 | done |
|
|
372 | done |
|
|
373 | |
|
|
374 | for x in ${FCFLAGS}; do |
|
|
375 | for y in ${ALLOWED_FLAGS}; do |
|
|
376 | flag=${x%%=*} |
|
|
377 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
378 | NEW_FCFLAGS="${NEW_FCFLAGS} ${x}" |
|
|
379 | break |
|
|
380 | fi |
|
|
381 | done |
|
|
382 | done |
|
|
383 | |
|
|
384 | # In case we filtered out all optimization flags fallback to -O2 |
365 | # In case we filtered out all optimization flags fallback to -O2 |
385 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
366 | if _is_flagq ${var} "-O*" && ! _is_flagq new "-O*" ; then |
386 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
367 | new+=( -O2 ) |
387 | fi |
368 | fi |
388 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
369 | |
389 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
370 | eval export ${var}=\""${new[*]}"\" |
390 | fi |
371 | done |
391 | if [ "${FFLAGS/-O}" != "${FFLAGS}" -a "${NEW_FFLAGS/-O}" = "${NEW_FFLAGS}" ]; then |
|
|
392 | NEW_FFLAGS="${NEW_FFLAGS} -O2" |
|
|
393 | fi |
|
|
394 | if [ "${FCFLAGS/-O}" != "${FCFLAGS}" -a "${NEW_FCFLAGS/-O}" = "${NEW_FCFLAGS}" ]; then |
|
|
395 | NEW_FCFLAGS="${NEW_FCFLAGS} -O2" |
|
|
396 | fi |
|
|
397 | |
372 | |
398 | set +f # re-enable pathname expansion |
373 | set +f # re-enable pathname expansion |
399 | |
374 | |
400 | export CFLAGS="${NEW_CFLAGS}" |
|
|
401 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
402 | export FFLAGS="${NEW_FFLAGS}" |
|
|
403 | export FCFLAGS="${NEW_FCFLAGS}" |
|
|
404 | return 0 |
375 | return 0 |
405 | } |
376 | } |
406 | |
377 | |
407 | test-flag-PROG() { |
378 | test-flag-PROG() { |
408 | local comp=$1 |
379 | local comp=$1 |
409 | local flags="$2" |
380 | local flag=$2 |
410 | |
381 | |
411 | [[ -z ${comp} || -z ${flags} ]] && return 1 |
382 | [[ -z ${comp} || -z ${flag} ]] && return 1 |
412 | |
383 | |
413 | # use -c so we can test the assembler as well |
384 | # use -c so we can test the assembler as well |
414 | local PROG=$(tc-get${comp}) |
385 | local PROG=$(tc-get${comp}) |
415 | ${PROG} ${flags} -c -o /dev/null -xc /dev/null \ |
386 | ${PROG} "${flag}" -c -o /dev/null -xc /dev/null \ |
416 | > /dev/null 2>&1 |
387 | > /dev/null 2>&1 |
417 | } |
388 | } |
418 | |
389 | |
419 | # @FUNCTION: test-flag-CC |
390 | # @FUNCTION: test-flag-CC |
420 | # @USAGE: <flag> |
391 | # @USAGE: <flag> |
… | |
… | |
447 | |
418 | |
448 | shift |
419 | shift |
449 | |
420 | |
450 | [[ -z ${comp} ]] && return 1 |
421 | [[ -z ${comp} ]] && return 1 |
451 | |
422 | |
452 | x="" |
|
|
453 | for x in "$@" ; do |
423 | for x in "$@" ; do |
454 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
424 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
455 | done |
425 | done |
456 | |
426 | |
457 | echo "${flags}" |
427 | echo "${flags}" |
… | |
… | |
517 | # @FUNCTION: get-flag |
487 | # @FUNCTION: get-flag |
518 | # @USAGE: <flag> |
488 | # @USAGE: <flag> |
519 | # @DESCRIPTION: |
489 | # @DESCRIPTION: |
520 | # Find and echo the value for a particular flag. Accepts shell globs. |
490 | # Find and echo the value for a particular flag. Accepts shell globs. |
521 | get-flag() { |
491 | get-flag() { |
522 | local f findflag="$1" |
492 | local f var findflag="$1" |
523 | |
493 | |
524 | # this code looks a little flaky but seems to work for |
494 | # this code looks a little flaky but seems to work for |
525 | # everything we want ... |
495 | # everything we want ... |
526 | # for example, if CFLAGS="-march=i686": |
496 | # for example, if CFLAGS="-march=i686": |
527 | # `get-flag -march` == "-march=i686" |
497 | # `get-flag -march` == "-march=i686" |
528 | # `get-flag march` == "i686" |
498 | # `get-flag march` == "i686" |
529 | for f in ${CFLAGS} ${CXXFLAGS} ${FFLAGS} ${FCFLAGS} ; do |
499 | for var in $(all-flag-vars) ; do |
|
|
500 | for f in ${!var} ; do |
530 | if [ "${f/${findflag}}" != "${f}" ] ; then |
501 | if [ "${f/${findflag}}" != "${f}" ] ; then |
531 | printf "%s\n" "${f/-${findflag}=}" |
502 | printf "%s\n" "${f/-${findflag}=}" |
532 | return 0 |
503 | return 0 |
533 | fi |
504 | fi |
|
|
505 | done |
534 | done |
506 | done |
535 | return 1 |
507 | return 1 |
536 | } |
508 | } |
537 | |
|
|
538 | # DEAD FUNCS. Remove by Dec 2011. |
|
|
539 | test_flag() { die "$0: deprecated, please use test-flags()!" ; } |
|
|
540 | has_hardened() { die "$0: deprecated, please use gcc-specs-{relro,now}()!" ; } |
|
|
541 | has_pic() { die "$0: deprecated, please use gcc-specs-pie()!" ; } |
|
|
542 | has_pie() { die "$0: deprecated, please use gcc-specs-pie()!" ; } |
|
|
543 | has_ssp_all() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } |
|
|
544 | has_ssp() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } |
|
|
545 | |
509 | |
546 | # @FUNCTION: has_m64 |
510 | # @FUNCTION: has_m64 |
547 | # @DESCRIPTION: |
511 | # @DESCRIPTION: |
548 | # This doesn't test if the flag is accepted, it tests if the flag actually |
512 | # This doesn't test if the flag is accepted, it tests if the flag actually |
549 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
513 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
550 | # return code is 0, else the return code is 1. |
514 | # return code is 0, else the return code is 1. |
551 | has_m64() { |
515 | has_m64() { |
|
|
516 | eqawarn "${FUNCNAME}: don't use this anymore" |
|
|
517 | |
552 | # this doesnt test if the flag is accepted, it tests if the flag |
518 | # this doesnt test if the flag is accepted, it tests if the flag |
553 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
519 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
554 | # please dont replace this function with test_flag in some future |
520 | # please dont replace this function with test_flag in some future |
555 | # clean-up! |
521 | # clean-up! |
556 | |
522 | |
… | |
… | |
562 | rm -f "${temp}".c |
528 | rm -f "${temp}".c |
563 | [[ ${ret} != 1 ]] && return 0 |
529 | [[ ${ret} != 1 ]] && return 0 |
564 | return 1 |
530 | return 1 |
565 | } |
531 | } |
566 | |
532 | |
567 | # @FUNCTION: has_m32 |
|
|
568 | # @DESCRIPTION: |
|
|
569 | # This doesn't test if the flag is accepted, it tests if the flag actually |
|
|
570 | # WORKS. Non-mulilib gcc will take both -m32 and -64. If the flag works return |
|
|
571 | # code is 0, else return code is 1. |
|
|
572 | has_m32() { |
533 | has_m32() { |
573 | # this doesnt test if the flag is accepted, it tests if the flag |
534 | die "${FUNCNAME}: don't use this anymore" |
574 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
575 | # please dont replace this function with test_flag in some future |
|
|
576 | # clean-up! |
|
|
577 | |
|
|
578 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
579 | |
|
|
580 | local temp=$(emktemp) |
|
|
581 | echo "int main() { return(0); }" > "${temp}".c |
|
|
582 | MY_CC=$(tc-getCC) |
|
|
583 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
584 | local ret=$? |
|
|
585 | rm -f "${temp}".c |
|
|
586 | [[ ${ret} != 1 ]] && return 0 |
|
|
587 | return 1 |
|
|
588 | } |
535 | } |
589 | |
536 | |
590 | # @FUNCTION: replace-sparc64-flags |
537 | # @FUNCTION: replace-sparc64-flags |
591 | # @DESCRIPTION: |
538 | # @DESCRIPTION: |
592 | # Sets mcpu to v8 and uses the original value as mtune if none specified. |
539 | # Sets mcpu to v8 and uses the original value as mtune if none specified. |
… | |
… | |
619 | # @FUNCTION: append-libs |
566 | # @FUNCTION: append-libs |
620 | # @USAGE: <libs> |
567 | # @USAGE: <libs> |
621 | # @DESCRIPTION: |
568 | # @DESCRIPTION: |
622 | # Add extra <libs> to the current LIBS. |
569 | # Add extra <libs> to the current LIBS. |
623 | append-libs() { |
570 | append-libs() { |
624 | [[ -z $* ]] && return 0 |
571 | [[ $# -eq 0 ]] && return 0 |
625 | local flag |
572 | local flag |
626 | for flag in "$@"; do |
573 | for flag in "$@"; do |
627 | [[ ${flag} == -l* ]] && flag=${flag#-l} |
574 | [[ ${flag} == -l* ]] && flag=${flag#-l} |
628 | export LIBS="${LIBS} -l${flag}" |
575 | export LIBS="${LIBS} -l${flag}" |
629 | done |
576 | done |
630 | |
577 | |
631 | return 0 |
578 | return 0 |
632 | } |
579 | } |
633 | |
580 | |
634 | # @FUNCTION: append-ldflags |
|
|
635 | # @USAGE: <flags> |
|
|
636 | # @DESCRIPTION: |
|
|
637 | # Add extra <flags> to the current LDFLAGS. |
|
|
638 | append-ldflags() { |
|
|
639 | [[ -z $* ]] && return 0 |
|
|
640 | local flag |
|
|
641 | for flag in "$@"; do |
|
|
642 | [[ ${flag} == -l* ]] && \ |
|
|
643 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
|
|
644 | done |
|
|
645 | |
|
|
646 | export LDFLAGS="${LDFLAGS} $*" |
|
|
647 | return 0 |
|
|
648 | } |
|
|
649 | |
|
|
650 | # @FUNCTION: filter-ldflags |
|
|
651 | # @USAGE: <flags> |
|
|
652 | # @DESCRIPTION: |
|
|
653 | # Remove particular <flags> from LDFLAGS. Accepts shell globs. |
|
|
654 | filter-ldflags() { |
|
|
655 | _filter-var LDFLAGS "$@" |
|
|
656 | return 0 |
|
|
657 | } |
|
|
658 | |
|
|
659 | # @FUNCTION: raw-ldflags |
581 | # @FUNCTION: raw-ldflags |
660 | # @USAGE: <flags> |
582 | # @USAGE: [flags] |
661 | # @DESCRIPTION: |
583 | # @DESCRIPTION: |
662 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
584 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
663 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
585 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
664 | # to gcc where it needs the '-Wl,'. |
586 | # to gcc where it needs the '-Wl,'. |
|
|
587 | # |
|
|
588 | # If no flags are specified, then default to ${LDFLAGS}. |
665 | raw-ldflags() { |
589 | raw-ldflags() { |
666 | local x input="$@" |
590 | local x input="$@" |
667 | [[ -z ${input} ]] && input=${LDFLAGS} |
591 | [[ -z ${input} ]] && input=${LDFLAGS} |
668 | set -- |
592 | set -- |
669 | for x in ${input} ; do |
593 | for x in ${input} ; do |
… | |
… | |
680 | *GNU*) # GNU ld |
604 | *GNU*) # GNU ld |
681 | echo "-Wl,--no-as-needed" ;; |
605 | echo "-Wl,--no-as-needed" ;; |
682 | esac |
606 | esac |
683 | } |
607 | } |
684 | |
608 | |
685 | # Some tests for when we screw with things and want to make |
609 | fi |
686 | # sure we didn't break anything |
|
|
687 | #TESTS() { |
|
|
688 | # CFLAGS="-a -b -c=1" |
|
|
689 | # CXXFLAGS="-x -y -z=2" |
|
|
690 | # LDFLAGS="-l -m -n=3" |
|
|
691 | # |
|
|
692 | # die() { exit 1; } |
|
|
693 | # (is-flag 1 2 3) && die |
|
|
694 | # (is-ldflag 1 2 3) && die |
|
|
695 | # |
|
|
696 | # is-flagq -l && die |
|
|
697 | # is-ldflagq -a && die |
|
|
698 | # is-flagq -a || die |
|
|
699 | # is-flagq -x || die |
|
|
700 | # is-ldflagq -n=* || die |
|
|
701 | # is-ldflagq -n && die |
|
|
702 | # |
|
|
703 | # strip-unsupported-flags |
|
|
704 | # [[ ${CFLAGS} == "-c=1" ]] || die |
|
|
705 | # [[ ${CXXFLAGS} == "-y -z=2" ]] || die |
|
|
706 | # |
|
|
707 | # echo "All tests pass" |
|
|
708 | #} |
|
|
709 | #TESTS |
|
|