| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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/flag-o-matic.eclass,v 1.37 2004/02/21 07:19:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.92 2005/08/01 10:50:55 kevquinn Exp $ |
| 4 | # |
|
|
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | ECLASS=flag-o-matic |
5 | |
| 8 | INHERITED="$INHERITED $ECLASS" |
6 | # need access to emktemp() |
|
|
7 | inherit eutils toolchain-funcs multilib |
| 9 | |
8 | |
| 10 | # |
9 | # |
| 11 | #### filter-flags <flags> #### |
10 | #### filter-flags <flags> #### |
| 12 | # Remove particular flags from C[XX]FLAGS |
11 | # Remove particular flags from C[XX]FLAGS |
| 13 | # Matches only complete flags |
12 | # Matches only complete flags |
| … | |
… | |
| 16 | # Add extra flags to your current C[XX]FLAGS |
15 | # Add extra flags to your current C[XX]FLAGS |
| 17 | # |
16 | # |
| 18 | #### replace-flags <orig.flag> <new.flag> ### |
17 | #### replace-flags <orig.flag> <new.flag> ### |
| 19 | # Replace a flag by another one |
18 | # Replace a flag by another one |
| 20 | # |
19 | # |
| 21 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
20 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
| 22 | # Replace march/mcpu flags that specify <old.cpus> |
21 | # Replace march/mcpu flags that specify <old.cpus> |
| 23 | # with flags that specify <new.cpu> |
22 | # with flags that specify <new.cpu> |
| 24 | # |
23 | # |
| 25 | #### is-flag <flag> #### |
24 | #### is-flag <flag> #### |
| 26 | # Returns "true" if flag is set in C[XX]FLAGS |
25 | # Returns "true" if flag is set in C[XX]FLAGS |
| … | |
… | |
| 47 | # will leave the user with -mfpmath=386 |
46 | # will leave the user with -mfpmath=386 |
| 48 | # |
47 | # |
| 49 | #### append-ldflags #### |
48 | #### append-ldflags #### |
| 50 | # Add extra flags to your current LDFLAGS |
49 | # Add extra flags to your current LDFLAGS |
| 51 | # |
50 | # |
| 52 | #### etexec-flags #### |
51 | #### filter-ldflags <flags> #### |
| 53 | # hooked function for hardened-gcc that appends |
52 | # Remove particular flags from LDFLAGS |
| 54 | # -yet_exec {C,CXX,LD}FLAGS when hardened-gcc is installed |
53 | # Matches only complete flags |
| 55 | # and a package is filtering -fPIC,-fpic, -fPIE, -fpie |
|
|
| 56 | # |
54 | # |
| 57 | #### fstack-flags #### |
55 | #### fstack-flags #### |
| 58 | # hooked function for hardened-gcc that appends |
56 | # hooked function for hardened gcc that appends |
| 59 | # -yno_propolice to {C,CXX,LD}FLAGS when hardened-gcc is installed |
57 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
| 60 | # and a package is filtering -fstack-protector, -fstack-protector-all |
58 | # when a package is filtering -fstack-protector, -fstack-protector-all |
|
|
59 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
|
|
60 | # when only -fno-stack-protector is given |
|
|
61 | # |
|
|
62 | # |
|
|
63 | ################ DEPRECATED functions ################ |
|
|
64 | # The following are still present to avoid breaking existing |
|
|
65 | # code more than necessary; however they are deprecated. Please |
|
|
66 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
|
|
67 | # need to know which hardened techs are active in the compiler. |
|
|
68 | # See bug #100974 |
|
|
69 | # |
|
|
70 | #### has_hardened #### |
|
|
71 | # Returns true if the compiler has 'Hardened' in its version string, |
|
|
72 | # (note; switched-spec vanilla compilers satisfy this condition) or |
|
|
73 | # the specs file name contains 'hardened'. |
|
|
74 | # |
|
|
75 | #### has_pie #### |
|
|
76 | # Returns true if the compiler by default or with current CFLAGS |
|
|
77 | # builds position-independent code. |
|
|
78 | # |
|
|
79 | #### has_pic #### |
|
|
80 | # Returns true if the compiler by default or with current CFLAGS |
|
|
81 | # builds position-independent code. |
|
|
82 | # |
|
|
83 | #### has_ssp_all #### |
|
|
84 | # Returns true if the compiler by default or with current CFLAGS |
|
|
85 | # generates stack smash protections for all functions |
|
|
86 | # |
|
|
87 | #### has_ssp #### |
|
|
88 | # Returns true if the compiler by default or with current CFLAGS |
|
|
89 | # generates stack smash protections for most vulnerable functions |
| 61 | # |
90 | # |
| 62 | |
91 | |
| 63 | # C[XX]FLAGS that we allow in strip-flags |
92 | # C[XX]FLAGS that we allow in strip-flags |
| 64 | setup-allowed-flags() { |
93 | setup-allowed-flags() { |
| 65 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
94 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 66 | case "${ARCH}" in |
95 | export ALLOWED_FLAGS="-pipe" |
| 67 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
96 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 68 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
97 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 69 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
98 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
| 70 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
99 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-pie -fno-unit-at-a-time" |
| 71 | esac |
100 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
|
|
101 | fi |
|
|
102 | # allow a bunch of flags that negate features / control ABI |
|
|
103 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
|
|
104 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
|
|
105 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
|
|
106 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
|
|
107 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
108 | -mieee -mieee-with-inexact \ |
|
|
109 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
|
|
110 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
|
|
111 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
|
|
112 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias" |
| 72 | |
113 | |
| 73 | # C[XX]FLAGS that we are think is ok, but needs testing |
114 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 74 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
115 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 75 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
116 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 76 | return 0 |
117 | return 0 |
| 77 | } |
118 | } |
| 78 | |
119 | |
| 79 | filter-flags() { |
120 | filter-flags() { |
|
|
121 | local x f fset |
|
|
122 | declare -a new_CFLAGS new_CXXFLAGS |
|
|
123 | |
| 80 | for x in "$@" ; do |
124 | for x in "$@" ; do |
| 81 | case "${x}" in |
125 | case "${x}" in |
| 82 | -fPIC|-fpic|-fPIE|-fpie) etexec-flags;; |
126 | -fPIC|-fpic|-fPIE|-fpie|-pie) |
|
|
127 | append-flags `test_flag -fno-pie`;; |
| 83 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
128 | -fstack-protector|-fstack-protector-all) |
| 84 | *) ;; |
129 | fstack-flags;; |
| 85 | esac |
130 | esac |
| 86 | done |
131 | done |
| 87 | |
132 | |
| 88 | # we do this fancy spacing stuff so as to not filter |
133 | for fset in CFLAGS CXXFLAGS; do |
| 89 | # out part of a flag ... we want flag atoms ! :D |
134 | # Looping over the flags instead of using a global |
| 90 | CFLAGS=" ${CFLAGS} " |
135 | # substitution ensures that we're working with flag atoms. |
| 91 | CXXFLAGS=" ${CXXFLAGS} " |
136 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
137 | # list of flags. |
|
|
138 | for f in ${!fset}; do |
| 92 | for x in "$@" ; do |
139 | for x in "$@"; do |
| 93 | CFLAGS="${CFLAGS// ${x} / }" |
140 | # Note this should work with globs like -O* |
| 94 | CXXFLAGS="${CXXFLAGS// ${x} / }" |
141 | [[ ${f} == ${x} ]] && continue 2 |
|
|
142 | done |
|
|
143 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
| 95 | done |
144 | done |
| 96 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
145 | eval export ${fset}=\${new_${fset}\[*]} |
| 97 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
146 | done |
|
|
147 | |
| 98 | return 0 |
148 | return 0 |
|
|
149 | } |
|
|
150 | |
|
|
151 | filter-lfs-flags() { |
|
|
152 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
153 | } |
|
|
154 | |
|
|
155 | append-lfs-flags() { |
|
|
156 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 99 | } |
157 | } |
| 100 | |
158 | |
| 101 | append-flags() { |
159 | append-flags() { |
|
|
160 | [[ -z $* ]] && return 0 |
| 102 | export CFLAGS="${CFLAGS} $@" |
161 | export CFLAGS="${CFLAGS} $*" |
| 103 | export CXXFLAGS="${CXXFLAGS} $@" |
162 | export CXXFLAGS="${CXXFLAGS} $*" |
| 104 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
163 | [ -n "`is-flag -fno-stack-protector`" -o \ |
|
|
164 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
| 105 | return 0 |
165 | return 0 |
| 106 | } |
166 | } |
| 107 | |
167 | |
| 108 | replace-flags() { |
168 | replace-flags() { |
| 109 | # we do this fancy spacing stuff so as to not filter |
169 | local f fset |
| 110 | # out part of a flag ... we want flag atoms ! :D |
170 | declare -a new_CFLAGS new_CXXFLAGS |
| 111 | CFLAGS=" ${CFLAGS} " |
171 | |
| 112 | CXXFLAGS=" ${CXXFLAGS} " |
172 | for fset in CFLAGS CXXFLAGS; do |
| 113 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
173 | # Looping over the flags instead of using a global |
| 114 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
174 | # substitution ensures that we're working with flag atoms. |
| 115 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
175 | # Otherwise globs like -O* have the potential to wipe out the |
| 116 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
176 | # list of flags. |
|
|
177 | for f in ${!fset}; do |
|
|
178 | # Note this should work with globs like -O* |
|
|
179 | [[ ${f} == ${1} ]] && f=${2} |
|
|
180 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
181 | done |
|
|
182 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
183 | done |
|
|
184 | |
| 117 | return 0 |
185 | return 0 |
| 118 | } |
186 | } |
| 119 | |
187 | |
| 120 | replace-cpu-flags() { |
188 | replace-cpu-flags() { |
| 121 | local newcpu="$1" ; shift |
189 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 122 | local oldcpu="" |
190 | while [ $# -gt 1 ] ; do |
| 123 | for oldcpu in "$@" ; do |
191 | # quote to make sure that no globbing is done (particularly on |
|
|
192 | # ${oldcpu} prior to calling replace-flags |
| 124 | replace-flags -march=${oldcpu} -march=${newcpu} |
193 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 125 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
194 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
|
|
195 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
196 | shift |
| 126 | done |
197 | done |
| 127 | return 0 |
198 | return 0 |
| 128 | } |
199 | } |
| 129 | |
200 | |
| 130 | is-flag() { |
201 | is-flag() { |
|
|
202 | local x |
|
|
203 | |
| 131 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
204 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
205 | # Note this should work with globs like -mcpu=ultrasparc* |
| 132 | if [ "${x}" == "$1" ] ; then |
206 | if [[ ${x} == ${1} ]]; then |
| 133 | echo true |
207 | echo true |
| 134 | return 0 |
208 | return 0 |
| 135 | fi |
209 | fi |
| 136 | done |
210 | done |
| 137 | return 1 |
211 | return 1 |
| 138 | } |
212 | } |
| 139 | |
213 | |
| 140 | filter-mfpmath() { |
214 | filter-mfpmath() { |
|
|
215 | local orig_mfpmath new_math prune_math |
|
|
216 | |
| 141 | # save the original -mfpmath flag |
217 | # save the original -mfpmath flag |
| 142 | local orig_mfpmath="`get-flag -mfpmath`" |
218 | orig_mfpmath="`get-flag -mfpmath`" |
| 143 | # get the value of the current -mfpmath flag |
219 | # get the value of the current -mfpmath flag |
| 144 | local new_math=" `get-flag mfpmath | tr , ' '` " |
220 | new_math=" `get-flag mfpmath | tr , ' '` " |
| 145 | # figure out which math values are to be removed |
221 | # figure out which math values are to be removed |
| 146 | local prune_math="" |
222 | prune_math="" |
| 147 | for prune_math in "$@" ; do |
223 | for prune_math in "$@" ; do |
| 148 | new_math="${new_math/ ${prune_math} / }" |
224 | new_math="${new_math/ ${prune_math} / }" |
| 149 | done |
225 | done |
| 150 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
226 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
| 151 | |
227 | |
| … | |
… | |
| 160 | fi |
236 | fi |
| 161 | return 0 |
237 | return 0 |
| 162 | } |
238 | } |
| 163 | |
239 | |
| 164 | strip-flags() { |
240 | strip-flags() { |
|
|
241 | local x y flag NEW_CFLAGS NEW_CXXFLAGS |
|
|
242 | |
| 165 | setup-allowed-flags |
243 | setup-allowed-flags |
| 166 | |
244 | |
| 167 | local NEW_CFLAGS="" |
245 | local NEW_CFLAGS="" |
| 168 | local NEW_CXXFLAGS="" |
246 | local NEW_CXXFLAGS="" |
| 169 | |
247 | |
| 170 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
248 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 171 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
249 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 172 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
|
|
| 173 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
250 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 174 | fi |
251 | fi |
| 175 | |
252 | |
| 176 | set -f |
253 | set -f # disable pathname expansion |
| 177 | |
254 | |
| 178 | for x in ${CFLAGS} |
255 | for x in ${CFLAGS}; do |
| 179 | do |
|
|
| 180 | for y in ${ALLOWED_FLAGS} |
256 | for y in ${ALLOWED_FLAGS}; do |
| 181 | do |
|
|
| 182 | flag=${x%%=*} |
257 | flag=${x%%=*} |
| 183 | if [ "${flag%%${y}}" = "" ] |
258 | if [ "${flag%%${y}}" = "" ] ; then |
| 184 | then |
|
|
| 185 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
259 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 186 | break |
260 | break |
| 187 | fi |
261 | fi |
| 188 | done |
262 | done |
| 189 | done |
263 | done |
| 190 | |
264 | |
| 191 | for x in ${CXXFLAGS} |
265 | for x in ${CXXFLAGS}; do |
| 192 | do |
|
|
| 193 | for y in ${ALLOWED_FLAGS} |
266 | for y in ${ALLOWED_FLAGS}; do |
| 194 | do |
|
|
| 195 | flag=${x%%=*} |
267 | flag=${x%%=*} |
| 196 | if [ "${flag%%${y}}" = "" ] |
268 | if [ "${flag%%${y}}" = "" ] ; then |
| 197 | then |
|
|
| 198 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
269 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 199 | break |
270 | break |
| 200 | fi |
271 | fi |
| 201 | done |
272 | done |
| 202 | done |
273 | done |
| … | |
… | |
| 207 | fi |
278 | fi |
| 208 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
279 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
| 209 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
280 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
| 210 | fi |
281 | fi |
| 211 | |
282 | |
| 212 | set +f |
283 | set +f # re-enable pathname expansion |
| 213 | |
|
|
| 214 | [ `use debug` ] \ |
|
|
| 215 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
|
|
| 216 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
|
|
| 217 | |
284 | |
| 218 | export CFLAGS="${NEW_CFLAGS}" |
285 | export CFLAGS="${NEW_CFLAGS}" |
| 219 | export CXXFLAGS="${NEW_CXXFLAGS}" |
286 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 220 | return 0 |
287 | return 0 |
| 221 | } |
288 | } |
| 222 | |
289 | |
| 223 | test_flag() { |
290 | test_flag() { |
| 224 | if gcc -S -xc "$@" -o /dev/null /dev/null >/dev/null 2>&1; then |
291 | if $(tc-getCC) -S -xc "$@" -o "$(emktemp)" /dev/null &>/dev/null; then |
| 225 | echo "$@" |
292 | printf "%s\n" "$*" |
| 226 | return 0 |
293 | return 0 |
| 227 | fi |
294 | fi |
| 228 | return 1 |
295 | return 1 |
| 229 | } |
296 | } |
| 230 | |
297 | |
|
|
298 | test_version_info() { |
|
|
299 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
|
|
300 | return 0 |
|
|
301 | else |
|
|
302 | return 1 |
|
|
303 | fi |
|
|
304 | } |
|
|
305 | |
| 231 | strip-unsupported-flags() { |
306 | strip-unsupported-flags() { |
|
|
307 | local NEW_CFLAGS NEW_CXXFLAGS |
|
|
308 | |
| 232 | for x in ${CFLAGS} ; do |
309 | for x in ${CFLAGS} ; do |
| 233 | NEW_CFLAGS=${NEW_CFLAGS}" ""`test_flag ${x}`" |
310 | NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`" |
| 234 | done |
311 | done |
| 235 | for x in ${CXXFLAGS} ; do |
312 | for x in ${CXXFLAGS} ; do |
| 236 | NEW_CXXFLAGS=${NEW_CXXFLAGS}" ""`test_flag ${x}`" |
313 | NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`" |
| 237 | done |
314 | done |
| 238 | |
315 | |
| 239 | export CFLAGS="${NEW_CFLAGS}" |
316 | export CFLAGS="${NEW_CFLAGS}" |
| 240 | export CXXFLAGS="${NEW_CXXFLAGS}" |
317 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 241 | } |
318 | } |
| 242 | |
319 | |
| 243 | get-flag() { |
320 | get-flag() { |
|
|
321 | local f findflag="$1" |
|
|
322 | |
| 244 | # this code looks a little flaky but seems to work for |
323 | # this code looks a little flaky but seems to work for |
| 245 | # everything we want ... |
324 | # everything we want ... |
| 246 | # for example, if CFLAGS="-march=i686": |
325 | # for example, if CFLAGS="-march=i686": |
| 247 | # `get-flags -march` == "-march=i686" |
326 | # `get-flag -march` == "-march=i686" |
| 248 | # `get-flags march` == "i686" |
327 | # `get-flag march` == "i686" |
| 249 | local findflag="$1" |
|
|
| 250 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
328 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
| 251 | if [ "${f/${findflag}}" != "${f}" ] ; then |
329 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 252 | echo "${f/-${findflag}=}" |
330 | printf "%s\n" "${f/-${findflag}=}" |
| 253 | return 0 |
331 | return 0 |
| 254 | fi |
332 | fi |
| 255 | done |
333 | done |
| 256 | return 1 |
334 | return 1 |
| 257 | } |
335 | } |
| 258 | |
336 | |
|
|
337 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
|
|
338 | has_hardened() { |
|
|
339 | test_version_info Hardened && return 0 |
|
|
340 | # the specs file wont exist unless gcc has GCC_SPECS support |
|
|
341 | [ -f "${GCC_SPECS}" -a "${GCC_SPECS}" != "${GCC_SPECS/hardened/}" ] && \ |
|
|
342 | return 0 |
|
|
343 | return 1 |
|
|
344 | } |
|
|
345 | |
|
|
346 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
347 | # indicate whether PIC is set |
|
|
348 | has_pic() { |
|
|
349 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
|
|
350 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
|
|
351 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
|
|
352 | return 1 |
|
|
353 | } |
|
|
354 | |
|
|
355 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
356 | # indicate whether PIE is set |
|
|
357 | has_pie() { |
|
|
358 | [ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0 |
|
|
359 | [ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0 |
|
|
360 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__)" ] && return 0 |
|
|
361 | # test PIC while waiting for specs to be updated to generate __PIE__ |
|
|
362 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
|
|
363 | return 1 |
|
|
364 | } |
|
|
365 | |
|
|
366 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
367 | # indicate whether code for SSP is being generated for all functions |
|
|
368 | has_ssp_all() { |
|
|
369 | # note; this matches only -fstack-protector-all |
|
|
370 | [ "${CFLAGS/-fstack-protector-all}" != "${CFLAGS}" ] && return 0 |
|
|
371 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__)" ] && return 0 |
|
|
372 | gcc-specs-ssp && return 0 |
|
|
373 | return 1 |
|
|
374 | } |
|
|
375 | |
|
|
376 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
377 | # indicate whether code for SSP is being generated |
|
|
378 | has_ssp() { |
|
|
379 | # note; this matches both -fstack-protector and -fstack-protector-all |
|
|
380 | [ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0 |
|
|
381 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__)" ] && return 0 |
|
|
382 | gcc-specs-ssp && return 0 |
|
|
383 | return 1 |
|
|
384 | } |
|
|
385 | |
|
|
386 | has_m64() { |
|
|
387 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
388 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
389 | # please dont replace this function with test_flag in some future |
|
|
390 | # clean-up! |
|
|
391 | local temp="$(emktemp)" |
|
|
392 | echo "int main() { return(0); }" > ${temp}.c |
|
|
393 | MY_CC=$(tc-getCC) |
|
|
394 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
|
|
395 | local ret=$? |
|
|
396 | rm -f ${temp}.c |
|
|
397 | [ "$ret" != "1" ] && return 0 |
|
|
398 | return 1 |
|
|
399 | } |
|
|
400 | |
|
|
401 | has_m32() { |
|
|
402 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
403 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
404 | # please dont replace this function with test_flag in some future |
|
|
405 | # clean-up! |
|
|
406 | |
|
|
407 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
408 | |
|
|
409 | local temp="$(emktemp)" |
|
|
410 | echo "int main() { return(0); }" > ${temp}.c |
|
|
411 | MY_CC=$(tc-getCC) |
|
|
412 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
|
|
413 | local ret=$? |
|
|
414 | rm -f ${temp}.c |
|
|
415 | [ "$ret" != "1" ] && return 0 |
|
|
416 | return 1 |
|
|
417 | } |
|
|
418 | |
| 259 | replace-sparc64-flags() { |
419 | replace-sparc64-flags() { |
| 260 | local SPARC64_CPUS="ultrasparc v9" |
420 | local SPARC64_CPUS="ultrasparc v9" |
| 261 | |
421 | |
| 262 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
422 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 263 | then |
|
|
| 264 | for x in ${SPARC64_CPUS} |
423 | for x in ${SPARC64_CPUS}; do |
| 265 | do |
|
|
| 266 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
424 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 267 | done |
425 | done |
| 268 | else |
426 | else |
| 269 | for x in ${SPARC64_CPUS} |
427 | for x in ${SPARC64_CPUS}; do |
| 270 | do |
|
|
| 271 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
428 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 272 | done |
429 | done |
| 273 | fi |
430 | fi |
| 274 | |
431 | |
| 275 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ] |
432 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 276 | then |
|
|
| 277 | for x in ${SPARC64_CPUS} |
433 | for x in ${SPARC64_CPUS}; do |
| 278 | do |
|
|
| 279 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
434 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 280 | done |
435 | done |
| 281 | else |
436 | else |
| 282 | for x in ${SPARC64_CPUS} |
437 | for x in ${SPARC64_CPUS}; do |
| 283 | do |
|
|
| 284 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
438 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 285 | done |
439 | done |
| 286 | fi |
440 | fi |
|
|
441 | |
|
|
442 | export CFLAGS CXXFLAGS |
| 287 | } |
443 | } |
| 288 | |
444 | |
| 289 | append-ldflags() { |
445 | append-ldflags() { |
|
|
446 | export LDFLAGS="${LDFLAGS} $*" |
|
|
447 | return 0 |
|
|
448 | } |
|
|
449 | |
|
|
450 | filter-ldflags() { |
|
|
451 | local x |
|
|
452 | |
|
|
453 | # we do this fancy spacing stuff so as to not filter |
|
|
454 | # out part of a flag ... we want flag atoms ! :D |
| 290 | LDFLAGS="${LDFLAGS} $@" |
455 | LDFLAGS=" ${LDFLAGS} " |
|
|
456 | for x in "$@" ; do |
|
|
457 | LDFLAGS=${LDFLAGS// ${x} / } |
|
|
458 | done |
|
|
459 | [[ -z ${LDFLAGS// } ]] \ |
|
|
460 | && LDFLAGS="" \ |
|
|
461 | || LDFLAGS=${LDFLAGS:1:${#LDFLAGS}-2} |
|
|
462 | export LDFLAGS |
| 291 | return 0 |
463 | return 0 |
| 292 | } |
|
|
| 293 | |
|
|
| 294 | etexec-flags() { |
|
|
| 295 | has_version sys-devel/hardened-gcc |
|
|
| 296 | if [ $? == 0 ] ; then |
|
|
| 297 | if [ "`is-flag -yet_exec`" != "true" ]; then |
|
|
| 298 | debug-print ">>> appending flags -yet_exec" |
|
|
| 299 | append-flags -yet_exec |
|
|
| 300 | append-ldflags -yet_exec |
|
|
| 301 | fi |
|
|
| 302 | fi |
|
|
| 303 | } |
464 | } |
| 304 | |
465 | |
| 305 | fstack-flags() { |
466 | fstack-flags() { |
| 306 | has_version sys-devel/hardened-gcc |
467 | if gcc-specs-ssp; then |
| 307 | if [ $? == 0 ] ; then |
468 | [ -z "`is-flag -fno-stack-protector`" ] && |
| 308 | if [ "`is-flag -yno_propolice`" != "true" ]; then |
469 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
| 309 | debug-print ">>> appending flags -yno_propolice" |
|
|
| 310 | append-flags -yno_propolice |
|
|
| 311 | append-ldflags -yno_propolice |
|
|
| 312 | fi |
470 | fi |
| 313 | fi |
471 | return 0 |
| 314 | } |
472 | } |
|
|
473 | |
|
|
474 | # This is thanks to great work from Paul de Vrieze <gentoo-user@devrieze.net>, |
|
|
475 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
|
|
476 | # fixes. |
|
|
477 | # |
|
|
478 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
|
|
479 | gcc2-flags() { |
|
|
480 | if [[ $(tc-arch) == "x86" || $(tc-arch) == "amd64" ]] ; then |
|
|
481 | CFLAGS=${CFLAGS//-mtune=/-mcpu=} |
|
|
482 | CXXFLAGS=${CXXFLAGS//-mtune=/-mcpu=} |
|
|
483 | fi |
|
|
484 | |
|
|
485 | replace-cpu-flags k6-{2,3} k6 |
|
|
486 | replace-cpu-flags athlon{,-{tbird,4,xp,mp}} i686 |
|
|
487 | |
|
|
488 | replace-cpu-flags pentium-mmx i586 |
|
|
489 | replace-cpu-flags pentium{2,3,4} i686 |
|
|
490 | |
|
|
491 | replace-cpu-flags ev6{7,8} ev6 |
|
|
492 | |
|
|
493 | export CFLAGS CXXFLAGS |
|
|
494 | } |