| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.40 2004/03/12 11:21:15 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.112 2006/11/15 22:17:56 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 | |
9 | |
| 10 | # |
10 | # |
| 11 | #### filter-flags <flags> #### |
11 | #### filter-flags <flags> #### |
| 12 | # Remove particular flags from C[XX]FLAGS |
12 | # Remove particular flags from C[XX]FLAGS |
| 13 | # Matches only complete flags |
13 | # Matches only complete flags |
| … | |
… | |
| 16 | # Add extra flags to your current C[XX]FLAGS |
16 | # Add extra flags to your current C[XX]FLAGS |
| 17 | # |
17 | # |
| 18 | #### replace-flags <orig.flag> <new.flag> ### |
18 | #### replace-flags <orig.flag> <new.flag> ### |
| 19 | # Replace a flag by another one |
19 | # Replace a flag by another one |
| 20 | # |
20 | # |
| 21 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
21 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
| 22 | # Replace march/mcpu flags that specify <old.cpus> |
22 | # Replace march/mcpu flags that specify <old.cpus> |
| 23 | # with flags that specify <new.cpu> |
23 | # with flags that specify <new.cpu> |
| 24 | # |
24 | # |
| 25 | #### is-flag <flag> #### |
25 | #### is-flag[q] <flag> #### |
| 26 | # Returns "true" if flag is set in C[XX]FLAGS |
26 | # Returns "true" if flag is set in C[XX]FLAGS |
| 27 | # 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 |
| 28 | # |
34 | # |
| 29 | #### strip-flags #### |
35 | #### strip-flags #### |
| 30 | # Strip C[XX]FLAGS of everything except known |
36 | # Strip C[XX]FLAGS of everything except known |
| 31 | # good options. |
37 | # good options. |
| 32 | # |
38 | # |
| … | |
… | |
| 47 | # will leave the user with -mfpmath=386 |
53 | # will leave the user with -mfpmath=386 |
| 48 | # |
54 | # |
| 49 | #### append-ldflags #### |
55 | #### append-ldflags #### |
| 50 | # Add extra flags to your current LDFLAGS |
56 | # Add extra flags to your current LDFLAGS |
| 51 | # |
57 | # |
| 52 | #### etexec-flags #### |
58 | #### filter-ldflags <flags> #### |
| 53 | # hooked function for hardened-gcc that appends |
59 | # Remove particular flags from LDFLAGS |
| 54 | # -yet_exec {C,CXX,LD}FLAGS when hardened-gcc is installed |
60 | # Matches only complete flags |
| 55 | # and a package is filtering -fPIC,-fpic, -fPIE, -fpie |
|
|
| 56 | # |
61 | # |
| 57 | #### fstack-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 | # -yno_propolice to {C,CXX,LD}FLAGS when hardened-gcc is installed |
64 | # |
| 60 | # and a package is filtering -fstack-protector, -fstack-protector-all |
65 | ################ DEPRECATED functions ################ |
|
|
66 | # The following are still present to avoid breaking existing |
|
|
67 | # code more than necessary; however they are deprecated. Please |
|
|
68 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
|
|
69 | # need to know which hardened techs are active in the compiler. |
|
|
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 |
| 61 | # |
92 | # |
| 62 | |
93 | |
| 63 | # C[XX]FLAGS that we allow in strip-flags |
94 | # C[XX]FLAGS that we allow in strip-flags |
| 64 | setup-allowed-flags() { |
95 | setup-allowed-flags() { |
| 65 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
96 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 66 | case "${ARCH}" in |
97 | export ALLOWED_FLAGS="-pipe" |
| 67 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
98 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 68 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
99 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 69 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
100 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
| 70 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
101 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
| 71 | esac |
102 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
|
|
103 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
|
|
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" |
| 72 | |
116 | |
| 73 | # 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 |
| 74 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
118 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 75 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
119 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
| 76 | 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\[*]} |
| 77 | } |
163 | } |
| 78 | |
164 | |
| 79 | filter-flags() { |
165 | filter-flags() { |
| 80 | for x in "$@" ; do |
166 | _filter-hardened "$@" |
| 81 | case "${x}" in |
167 | _filter-var CFLAGS "$@" |
| 82 | -fPIC|-fpic|-fPIE|-fpie|-pie) etexec-flags;; |
168 | _filter-var CXXFLAGS "$@" |
| 83 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
|
|
| 84 | *) ;; |
|
|
| 85 | esac |
|
|
| 86 | done |
|
|
| 87 | |
|
|
| 88 | # we do this fancy spacing stuff so as to not filter |
|
|
| 89 | # out part of a flag ... we want flag atoms ! :D |
|
|
| 90 | CFLAGS=" ${CFLAGS} " |
|
|
| 91 | CXXFLAGS=" ${CXXFLAGS} " |
|
|
| 92 | for x in "$@" ; do |
|
|
| 93 | CFLAGS="${CFLAGS// ${x} / }" |
|
|
| 94 | CXXFLAGS="${CXXFLAGS// ${x} / }" |
|
|
| 95 | done |
|
|
| 96 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
|
|
| 97 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
|
|
| 98 | return 0 |
169 | return 0 |
| 99 | } |
170 | } |
| 100 | |
171 | |
| 101 | filter-lfs-flags() { |
172 | filter-lfs-flags() { |
|
|
173 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
| 102 | 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 |
| 103 | } |
175 | } |
| 104 | |
176 | |
|
|
177 | append-lfs-flags() { |
|
|
178 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
|
|
179 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
180 | } |
|
|
181 | |
| 105 | append-flags() { |
182 | append-flags() { |
|
|
183 | [[ -z $* ]] && return 0 |
| 106 | export CFLAGS="${CFLAGS} $@" |
184 | export CFLAGS="${CFLAGS} $*" |
| 107 | export CXXFLAGS="${CXXFLAGS} $@" |
185 | export CXXFLAGS="${CXXFLAGS} $*" |
| 108 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
|
|
| 109 | return 0 |
186 | return 0 |
| 110 | } |
187 | } |
| 111 | |
188 | |
| 112 | replace-flags() { |
189 | replace-flags() { |
| 113 | # we do this fancy spacing stuff so as to not filter |
190 | [[ $# != 2 ]] \ |
| 114 | # out part of a flag ... we want flag atoms ! :D |
191 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
| 115 | CFLAGS=" ${CFLAGS} " |
192 | && die "replace-flags takes 2 arguments, not $#" |
| 116 | CXXFLAGS=" ${CXXFLAGS} " |
193 | |
| 117 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
194 | local f fset |
| 118 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
195 | declare -a new_CFLAGS new_CXXFLAGS |
| 119 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
196 | |
| 120 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
197 | for fset in CFLAGS CXXFLAGS; do |
|
|
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 | |
| 121 | return 0 |
210 | return 0 |
| 122 | } |
211 | } |
| 123 | |
212 | |
| 124 | replace-cpu-flags() { |
213 | replace-cpu-flags() { |
| 125 | local newcpu="$1" ; shift |
214 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 126 | local oldcpu="" |
215 | while [ $# -gt 1 ] ; do |
| 127 | for oldcpu in "$@" ; do |
216 | # quote to make sure that no globbing is done (particularly on |
|
|
217 | # ${oldcpu} prior to calling replace-flags |
| 128 | replace-flags -march=${oldcpu} -march=${newcpu} |
218 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 129 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
219 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
| 130 | replace-flags -mtune=${oldcpu} -mtune=${newcpu} |
220 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
221 | shift |
| 131 | done |
222 | done |
| 132 | return 0 |
223 | return 0 |
| 133 | } |
224 | } |
| 134 | |
225 | |
| 135 | is-flag() { |
226 | is-flagq() { |
|
|
227 | local x |
|
|
228 | |
| 136 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
229 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
230 | # Note this should work with globs like -mcpu=ultrasparc* |
| 137 | if [ "${x}" == "$1" ] ; then |
231 | if [[ ${x} == ${1} ]]; then |
| 138 | echo true |
|
|
| 139 | return 0 |
232 | return 0 |
| 140 | fi |
233 | fi |
| 141 | done |
234 | done |
| 142 | return 1 |
235 | return 1 |
| 143 | } |
236 | } |
| 144 | |
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 | |
| 145 | filter-mfpmath() { |
266 | filter-mfpmath() { |
|
|
267 | local orig_mfpmath new_math prune_math |
|
|
268 | |
| 146 | # save the original -mfpmath flag |
269 | # save the original -mfpmath flag |
| 147 | local orig_mfpmath="`get-flag -mfpmath`" |
270 | orig_mfpmath=$(get-flag -mfpmath) |
| 148 | # get the value of the current -mfpmath flag |
271 | # get the value of the current -mfpmath flag |
| 149 | local new_math=" `get-flag mfpmath | tr , ' '` " |
272 | new_math=$(get-flag mfpmath) |
|
|
273 | new_math=" ${new_math//,/ } " |
| 150 | # figure out which math values are to be removed |
274 | # figure out which math values are to be removed |
| 151 | local prune_math="" |
275 | prune_math="" |
| 152 | for prune_math in "$@" ; do |
276 | for prune_math in "$@" ; do |
| 153 | new_math="${new_math/ ${prune_math} / }" |
277 | new_math=${new_math/ ${prune_math} / } |
| 154 | done |
278 | done |
| 155 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
279 | new_math=$(echo ${new_math}) |
|
|
280 | new_math=${new_math// /,} |
| 156 | |
281 | |
| 157 | if [ -z "${new_math}" ] ; then |
282 | if [[ -z ${new_math} ]] ; then |
| 158 | # if we're removing all user specified math values are |
283 | # if we're removing all user specified math values are |
| 159 | # slated for removal, then we just filter the flag |
284 | # slated for removal, then we just filter the flag |
| 160 | filter-flags ${orig_mfpmath} |
285 | filter-flags ${orig_mfpmath} |
| 161 | else |
286 | else |
| 162 | # if we only want to filter some of the user specified |
287 | # if we only want to filter some of the user specified |
| … | |
… | |
| 165 | fi |
290 | fi |
| 166 | return 0 |
291 | return 0 |
| 167 | } |
292 | } |
| 168 | |
293 | |
| 169 | strip-flags() { |
294 | strip-flags() { |
|
|
295 | local x y flag NEW_CFLAGS NEW_CXXFLAGS |
|
|
296 | |
| 170 | setup-allowed-flags |
297 | setup-allowed-flags |
| 171 | |
298 | |
| 172 | local NEW_CFLAGS="" |
299 | local NEW_CFLAGS="" |
| 173 | local NEW_CXXFLAGS="" |
300 | local NEW_CXXFLAGS="" |
| 174 | |
301 | |
| 175 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
302 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 176 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
303 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 177 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
|
|
| 178 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
304 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 179 | fi |
305 | fi |
| 180 | |
306 | |
| 181 | set -f |
307 | set -f # disable pathname expansion |
| 182 | |
308 | |
| 183 | for x in ${CFLAGS} |
309 | for x in ${CFLAGS}; do |
| 184 | do |
|
|
| 185 | for y in ${ALLOWED_FLAGS} |
310 | for y in ${ALLOWED_FLAGS}; do |
| 186 | do |
|
|
| 187 | flag=${x%%=*} |
311 | flag=${x%%=*} |
| 188 | if [ "${flag%%${y}}" = "" ] |
312 | if [ "${flag%%${y}}" = "" ] ; then |
| 189 | then |
|
|
| 190 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
313 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 191 | break |
314 | break |
| 192 | fi |
315 | fi |
| 193 | done |
316 | done |
| 194 | done |
317 | done |
| 195 | |
318 | |
| 196 | for x in ${CXXFLAGS} |
319 | for x in ${CXXFLAGS}; do |
| 197 | do |
|
|
| 198 | for y in ${ALLOWED_FLAGS} |
320 | for y in ${ALLOWED_FLAGS}; do |
| 199 | do |
|
|
| 200 | flag=${x%%=*} |
321 | flag=${x%%=*} |
| 201 | if [ "${flag%%${y}}" = "" ] |
322 | if [ "${flag%%${y}}" = "" ] ; then |
| 202 | then |
|
|
| 203 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
323 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 204 | break |
324 | break |
| 205 | fi |
325 | fi |
| 206 | done |
326 | done |
| 207 | done |
327 | done |
| … | |
… | |
| 212 | fi |
332 | fi |
| 213 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
333 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
| 214 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
334 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
| 215 | fi |
335 | fi |
| 216 | |
336 | |
| 217 | set +f |
337 | set +f # re-enable pathname expansion |
| 218 | |
|
|
| 219 | [ `use debug` ] \ |
|
|
| 220 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
|
|
| 221 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
|
|
| 222 | |
338 | |
| 223 | export CFLAGS="${NEW_CFLAGS}" |
339 | export CFLAGS="${NEW_CFLAGS}" |
| 224 | export CXXFLAGS="${NEW_CXXFLAGS}" |
340 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 225 | return 0 |
341 | return 0 |
| 226 | } |
342 | } |
| 227 | |
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() |
| 228 | test_flag() { |
393 | test_flag() { |
| 229 | if gcc -S -xc "$@" -o /dev/null /dev/null >/dev/null 2>&1; then |
394 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
| 230 | echo "$@" |
395 | |
|
|
396 | test-flags-CC "$@" |
|
|
397 | } |
|
|
398 | |
|
|
399 | test_version_info() { |
|
|
400 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 231 | return 0 |
401 | return 0 |
| 232 | fi |
402 | else |
| 233 | return 1 |
403 | return 1 |
|
|
404 | fi |
| 234 | } |
405 | } |
| 235 | |
406 | |
| 236 | strip-unsupported-flags() { |
407 | strip-unsupported-flags() { |
|
|
408 | local x NEW_CFLAGS NEW_CXXFLAGS |
|
|
409 | |
| 237 | for x in ${CFLAGS} ; do |
410 | for x in ${CFLAGS} ; do |
| 238 | NEW_CFLAGS=${NEW_CFLAGS}" ""`test_flag ${x}`" |
411 | NEW_CFLAGS="${NEW_CFLAGS} $(test-flags ${x})" |
| 239 | done |
412 | done |
| 240 | for x in ${CXXFLAGS} ; do |
413 | for x in ${CXXFLAGS} ; do |
| 241 | NEW_CXXFLAGS=${NEW_CXXFLAGS}" ""`test_flag ${x}`" |
414 | NEW_CXXFLAGS="${NEW_CXXFLAGS} $(test-flags ${x})" |
| 242 | done |
415 | done |
| 243 | |
416 | |
| 244 | export CFLAGS="${NEW_CFLAGS}" |
417 | export CFLAGS=${NEW_CFLAGS} |
| 245 | export CXXFLAGS="${NEW_CXXFLAGS}" |
418 | export CXXFLAGS=${NEW_CXXFLAGS} |
| 246 | } |
419 | } |
| 247 | |
420 | |
| 248 | get-flag() { |
421 | get-flag() { |
|
|
422 | local f findflag="$1" |
|
|
423 | |
| 249 | # this code looks a little flaky but seems to work for |
424 | # this code looks a little flaky but seems to work for |
| 250 | # everything we want ... |
425 | # everything we want ... |
| 251 | # for example, if CFLAGS="-march=i686": |
426 | # for example, if CFLAGS="-march=i686": |
| 252 | # `get-flags -march` == "-march=i686" |
427 | # `get-flag -march` == "-march=i686" |
| 253 | # `get-flags march` == "i686" |
428 | # `get-flag march` == "i686" |
| 254 | local findflag="$1" |
|
|
| 255 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
429 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
| 256 | if [ "${f/${findflag}}" != "${f}" ] ; then |
430 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 257 | echo "${f/-${findflag}=}" |
431 | printf "%s\n" "${f/-${findflag}=}" |
| 258 | return 0 |
432 | return 0 |
| 259 | fi |
433 | fi |
| 260 | done |
434 | done |
| 261 | return 1 |
435 | return 1 |
| 262 | } |
436 | } |
| 263 | |
437 | |
|
|
438 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
|
|
439 | has_hardened() { |
|
|
440 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
|
|
441 | |
|
|
442 | test_version_info Hardened && return 0 |
|
|
443 | # The specs file wont exist unless gcc has GCC_SPECS support |
|
|
444 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
|
|
445 | } |
|
|
446 | |
|
|
447 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
448 | # indicate whether PIC is set |
|
|
449 | has_pic() { |
|
|
450 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
|
|
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 |
|
|
459 | has_pie() { |
|
|
460 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
|
|
461 | |
|
|
462 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
463 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
|
|
464 | gcc-specs-pie |
|
|
465 | } |
|
|
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 |
|
|
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 |
|
|
484 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
|
|
485 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
|
|
486 | gcc-specs-ssp |
|
|
487 | } |
|
|
488 | |
|
|
489 | has_m64() { |
|
|
490 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
491 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
492 | # please dont replace this function with test_flag in some future |
|
|
493 | # clean-up! |
|
|
494 | |
|
|
495 | local temp="$(emktemp)" |
|
|
496 | echo "int main() { return(0); }" > "${temp}".c |
|
|
497 | MY_CC=$(tc-getCC) |
|
|
498 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
499 | local ret=$? |
|
|
500 | rm -f "${temp}".c |
|
|
501 | [[ ${ret} != 1 ]] && return 0 |
|
|
502 | return 1 |
|
|
503 | } |
|
|
504 | |
|
|
505 | has_m32() { |
|
|
506 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
507 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
508 | # please dont replace this function with test_flag in some future |
|
|
509 | # clean-up! |
|
|
510 | |
|
|
511 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
512 | |
|
|
513 | local temp=$(emktemp) |
|
|
514 | echo "int main() { return(0); }" > "${temp}".c |
|
|
515 | MY_CC=$(tc-getCC) |
|
|
516 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
517 | local ret=$? |
|
|
518 | rm -f "${temp}".c |
|
|
519 | [[ ${ret} != 1 ]] && return 0 |
|
|
520 | return 1 |
|
|
521 | } |
|
|
522 | |
| 264 | replace-sparc64-flags() { |
523 | replace-sparc64-flags() { |
| 265 | local SPARC64_CPUS="ultrasparc v9" |
524 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 266 | |
525 | |
| 267 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
526 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 268 | then |
|
|
| 269 | for x in ${SPARC64_CPUS} |
527 | for x in ${SPARC64_CPUS}; do |
| 270 | do |
|
|
| 271 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
528 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 272 | done |
529 | done |
| 273 | else |
530 | else |
| 274 | for x in ${SPARC64_CPUS} |
531 | for x in ${SPARC64_CPUS}; do |
| 275 | do |
|
|
| 276 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
532 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 277 | done |
533 | done |
| 278 | fi |
534 | fi |
| 279 | |
535 | |
| 280 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ] |
536 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 281 | then |
|
|
| 282 | for x in ${SPARC64_CPUS} |
537 | for x in ${SPARC64_CPUS}; do |
| 283 | do |
|
|
| 284 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
538 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 285 | done |
539 | done |
| 286 | else |
540 | else |
| 287 | for x in ${SPARC64_CPUS} |
541 | for x in ${SPARC64_CPUS}; do |
| 288 | do |
|
|
| 289 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
542 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 290 | done |
543 | done |
| 291 | fi |
544 | fi |
|
|
545 | |
|
|
546 | export CFLAGS CXXFLAGS |
| 292 | } |
547 | } |
| 293 | |
548 | |
| 294 | append-ldflags() { |
549 | append-ldflags() { |
|
|
550 | [[ -z $* ]] && return 0 |
| 295 | LDFLAGS="${LDFLAGS} $@" |
551 | export LDFLAGS="${LDFLAGS} $*" |
| 296 | return 0 |
552 | return 0 |
| 297 | } |
553 | } |
| 298 | |
554 | |
| 299 | etexec-flags() { |
555 | # Remove flags from LDFLAGS - it's up to the ebuild to filter |
| 300 | has_version sys-devel/hardened-gcc |
556 | # CFLAGS and CXXFLAGS via filter-flags if they need to. |
| 301 | if [ $? == 0 ] ; then |
557 | filter-ldflags() { |
| 302 | if [ "`is-flag -yet_exec`" != "true" ]; then |
558 | _filter-var LDFLAGS "$@" |
| 303 | debug-print ">>> appending flags -yet_exec" |
559 | return 0 |
| 304 | append-flags -yet_exec |
|
|
| 305 | append-ldflags -yet_exec |
|
|
| 306 | fi |
|
|
| 307 | fi |
|
|
| 308 | } |
560 | } |
| 309 | |
561 | |
| 310 | fstack-flags() { |
562 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 311 | has_version sys-devel/hardened-gcc |
563 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 312 | if [ $? == 0 ] ; then |
564 | # to gcc where it needs the '-Wl,'. |
| 313 | if [ "`is-flag -yno_propolice`" != "true" ]; then |
565 | raw-ldflags() { |
| 314 | debug-print ">>> appending flags -yno_propolice" |
566 | local x input="$@" |
| 315 | append-flags -yno_propolice |
567 | [[ -z ${input} ]] && input=${LDFLAGS} |
| 316 | append-ldflags -yno_propolice |
568 | set -- |
| 317 | fi |
569 | for x in ${input} ; do |
| 318 | fi |
570 | x=${x#-Wl,} |
|
|
571 | set -- "$@" ${x//,/ } |
|
|
572 | done |
|
|
573 | echo "$@" |
| 319 | } |
574 | } |
|
|
575 | |
|
|
576 | # Gets the flags needed for "NOW" binding |
|
|
577 | bindnow-flags() { |
|
|
578 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
579 | *GNU* | *'with BFD'*) # GNU ld |
|
|
580 | echo "-Wl,-z,now" ;; |
|
|
581 | *Apple*) # Darwin ld |
|
|
582 | echo "-bind_at_load" ;; |
|
|
583 | *) |
|
|
584 | # Some linkers just recognize -V instead of -v |
|
|
585 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
586 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
587 | echo "-Wl,-z,now" ;; |
|
|
588 | esac |
|
|
589 | ;; |
|
|
590 | esac |
|
|
591 | } |