| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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.77 2004/11/13 07:07:08 solar Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
5 | # Author Bart Verwilst <verwilst@gentoo.org> |
| 6 | |
6 | |
| 7 | ECLASS=flag-o-matic |
7 | ECLASS=flag-o-matic |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | INHERITED="$INHERITED $ECLASS" |
|
|
9 | |
| 9 | IUSE="$IUSE debug" |
10 | IUSE="debug" |
|
|
11 | |
|
|
12 | # need access to emktemp() |
|
|
13 | inherit eutils toolchain-funcs |
| 10 | |
14 | |
| 11 | # |
15 | # |
| 12 | #### filter-flags <flags> #### |
16 | #### filter-flags <flags> #### |
| 13 | # Remove particular flags from C[XX]FLAGS |
17 | # Remove particular flags from C[XX]FLAGS |
| 14 | # Matches only complete flags |
18 | # Matches only complete flags |
| … | |
… | |
| 17 | # Add extra flags to your current C[XX]FLAGS |
21 | # Add extra flags to your current C[XX]FLAGS |
| 18 | # |
22 | # |
| 19 | #### replace-flags <orig.flag> <new.flag> ### |
23 | #### replace-flags <orig.flag> <new.flag> ### |
| 20 | # Replace a flag by another one |
24 | # Replace a flag by another one |
| 21 | # |
25 | # |
| 22 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
26 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
| 23 | # Replace march/mcpu flags that specify <old.cpus> |
27 | # Replace march/mcpu flags that specify <old.cpus> |
| 24 | # with flags that specify <new.cpu> |
28 | # with flags that specify <new.cpu> |
| 25 | # |
29 | # |
| 26 | #### is-flag <flag> #### |
30 | #### is-flag <flag> #### |
| 27 | # Returns "true" if flag is set in C[XX]FLAGS |
31 | # Returns "true" if flag is set in C[XX]FLAGS |
| … | |
… | |
| 68 | # |
72 | # |
| 69 | |
73 | |
| 70 | # C[XX]FLAGS that we allow in strip-flags |
74 | # C[XX]FLAGS that we allow in strip-flags |
| 71 | setup-allowed-flags() { |
75 | setup-allowed-flags() { |
| 72 | if [ -z "${ALLOWED_FLAGS}" ] ; then |
76 | if [ -z "${ALLOWED_FLAGS}" ] ; then |
| 73 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -fno-unit-at-a-time -pipe -g" |
77 | export ALLOWED_FLAGS="-pipe" |
|
|
78 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
|
|
79 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fno-stack-protector" |
|
|
80 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-pie -fno-unit-at-a-time" |
|
|
81 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
| 74 | case "${ARCH}" in |
82 | case "${ARCH}" in |
| 75 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
83 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -EL -EB -mabi" ;; |
| 76 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC -m64" ;; |
84 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC -m64" ;; |
| 77 | x86) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32" ;; |
85 | x86) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32" ;; |
| 78 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
86 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
| 79 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
87 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
| 80 | esac |
88 | esac |
| 81 | fi |
89 | fi |
|
|
90 | # allow a bunch of flags that negate features / control ABI |
|
|
91 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
|
|
92 | case "${ARCH}" in |
|
|
93 | x86|amd64|ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow" ;; |
|
|
94 | esac |
|
|
95 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs -msoft-float -mflat -mno-faster-structs -mfaster-structs -mlittle-endian -mbig-endian -mlive-g0 -mcmodel -mno-stack-bias -mstack-bias" |
| 82 | |
96 | |
| 83 | # C[XX]FLAGS that we are think is ok, but needs testing |
97 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 84 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
98 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 85 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
99 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 86 | return 0 |
100 | return 0 |
| … | |
… | |
| 96 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
110 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
| 97 | esac |
111 | esac |
| 98 | done |
112 | done |
| 99 | |
113 | |
| 100 | for fset in CFLAGS CXXFLAGS; do |
114 | for fset in CFLAGS CXXFLAGS; do |
|
|
115 | # Looping over the flags instead of using a global |
|
|
116 | # substitution ensures that we're working with flag atoms. |
|
|
117 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
118 | # list of flags. |
| 101 | for f in ${!fset}; do |
119 | for f in ${!fset}; do |
| 102 | for x in "$@"; do |
120 | for x in "$@"; do |
| 103 | # Note this should work with globs like -O* |
121 | # Note this should work with globs like -O* |
| 104 | [[ ${f} == ${x} ]] && continue 2 |
122 | [[ ${f} == ${x} ]] && continue 2 |
| 105 | done |
123 | done |
| … | |
… | |
| 126 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
144 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
| 127 | return 0 |
145 | return 0 |
| 128 | } |
146 | } |
| 129 | |
147 | |
| 130 | replace-flags() { |
148 | replace-flags() { |
| 131 | # we do this fancy spacing stuff so as to not filter |
149 | local f fset |
| 132 | # out part of a flag ... we want flag atoms ! :D |
150 | declare -a new_CFLAGS new_CXXFLAGS |
| 133 | CFLAGS=" ${CFLAGS} " |
151 | |
| 134 | CXXFLAGS=" ${CXXFLAGS} " |
152 | for fset in CFLAGS CXXFLAGS; do |
| 135 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
153 | # Looping over the flags instead of using a global |
| 136 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
154 | # substitution ensures that we're working with flag atoms. |
| 137 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
155 | # Otherwise globs like -O* have the potential to wipe out the |
| 138 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
156 | # list of flags. |
| 139 | export CFLAGS CXXFLAGS |
157 | for f in ${!fset}; do |
|
|
158 | # Note this should work with globs like -O* |
|
|
159 | [[ ${f} == ${1} ]] && f=${2} |
|
|
160 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
161 | done |
|
|
162 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
163 | done |
|
|
164 | |
| 140 | return 0 |
165 | return 0 |
| 141 | } |
166 | } |
| 142 | |
167 | |
| 143 | replace-cpu-flags() { |
168 | replace-cpu-flags() { |
| 144 | local oldcpu newcpu="$1" ; shift |
169 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 145 | for oldcpu in "$@" ; do |
170 | while [ $# -gt 1 ] ; do |
|
|
171 | # quote to make sure that no globbing is done (particularly on |
|
|
172 | # ${oldcpu} prior to calling replace-flags |
| 146 | replace-flags -march=${oldcpu} -march=${newcpu} |
173 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 147 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
174 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
| 148 | replace-flags -mtune=${oldcpu} -mtune=${newcpu} |
175 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
176 | shift |
| 149 | done |
177 | done |
| 150 | return 0 |
178 | return 0 |
| 151 | } |
179 | } |
| 152 | |
180 | |
| 153 | is-flag() { |
181 | is-flag() { |
| 154 | local x |
182 | local x |
| 155 | |
183 | |
| 156 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
184 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
|
|
185 | # Note this should work with globs like -mcpu=ultrasparc* |
| 157 | if [ "${x}" == "$1" ] ; then |
186 | if [[ ${x} == ${1} ]]; then |
| 158 | echo true |
187 | echo true |
| 159 | return 0 |
188 | return 0 |
| 160 | fi |
189 | fi |
| 161 | done |
190 | done |
| 162 | return 1 |
191 | return 1 |
| … | |
… | |
| 205 | set -f # disable pathname expansion |
234 | set -f # disable pathname expansion |
| 206 | |
235 | |
| 207 | for x in ${CFLAGS}; do |
236 | for x in ${CFLAGS}; do |
| 208 | for y in ${ALLOWED_FLAGS}; do |
237 | for y in ${ALLOWED_FLAGS}; do |
| 209 | flag=${x%%=*} |
238 | flag=${x%%=*} |
| 210 | if [ "${flag%%${y}}" = "" ]; then |
239 | if [ "${flag%%${y}}" = "" ] ; then |
| 211 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
240 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 212 | break |
241 | break |
| 213 | fi |
242 | fi |
| 214 | done |
243 | done |
| 215 | done |
244 | done |
| 216 | |
245 | |
| 217 | for x in ${CXXFLAGS}; do |
246 | for x in ${CXXFLAGS}; do |
| 218 | for y in ${ALLOWED_FLAGS}; do |
247 | for y in ${ALLOWED_FLAGS}; do |
| 219 | flag=${x%%=*} |
248 | flag=${x%%=*} |
| 220 | if [ "${flag%%${y}}" = "" ]; then |
249 | if [ "${flag%%${y}}" = "" ] ; then |
| 221 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
250 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 222 | break |
251 | break |
| 223 | fi |
252 | fi |
| 224 | done |
253 | done |
| 225 | done |
254 | done |
| … | |
… | |
| 238 | export CXXFLAGS="${NEW_CXXFLAGS}" |
267 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 239 | return 0 |
268 | return 0 |
| 240 | } |
269 | } |
| 241 | |
270 | |
| 242 | test_flag() { |
271 | test_flag() { |
| 243 | local cc=${CC:-gcc} ; cc=${cc%% *} |
272 | if $(tc-getCC) -S -xc "$@" -o "$(emktemp)" /dev/null &>/dev/null; then |
| 244 | if ${cc} -S -xc "$@" -o /dev/null /dev/null &>/dev/null; then |
|
|
| 245 | printf "%s\n" "$*" |
273 | printf "%s\n" "$*" |
| 246 | return 0 |
274 | return 0 |
| 247 | fi |
275 | fi |
| 248 | return 1 |
276 | return 1 |
| 249 | } |
277 | } |
| 250 | |
278 | |
| 251 | test_version_info() { |
279 | test_version_info() { |
| 252 | local cc=${CC:-gcc} ; cc=${cc%% *} |
|
|
| 253 | if [[ $(${cc} --version 2>&1) == *$1* ]]; then |
280 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 254 | return 0 |
281 | return 0 |
| 255 | else |
282 | else |
| 256 | return 1 |
283 | return 1 |
| 257 | fi |
284 | fi |
| 258 | } |
285 | } |
| … | |
… | |
| 287 | done |
314 | done |
| 288 | return 1 |
315 | return 1 |
| 289 | } |
316 | } |
| 290 | |
317 | |
| 291 | has_hardened() { |
318 | has_hardened() { |
| 292 | test_version_info Hardened |
319 | test_version_info Hardened && return 0 |
|
|
320 | # the specs file wont exist unless gcc has GCC_SPECS support |
|
|
321 | [ -f "${GCC_SPECS}" -a "${GCC_SPECS}" != "${GCC_SPECS/hardened/}" ] && \ |
|
|
322 | return 0 |
| 293 | return $? |
323 | return 1 |
| 294 | } |
324 | } |
| 295 | |
325 | |
| 296 | has_pic() { |
326 | has_pic() { |
| 297 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
327 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
| 298 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
328 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
| … | |
… | |
| 316 | has_m64() { |
346 | has_m64() { |
| 317 | # this doesnt test if the flag is accepted, it tests if the flag |
347 | # 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! |
348 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 319 | # please dont replace this function with test_flag in some future |
349 | # please dont replace this function with test_flag in some future |
| 320 | # clean-up! |
350 | # clean-up! |
| 321 | temp=`mktemp` |
351 | local temp="$(emktemp)" |
| 322 | echo "int main() { return(0); }" > ${temp}.c |
352 | echo "int main() { return(0); }" > ${temp}.c |
| 323 | ${CC/ .*/} -m64 -o /dev/null ${temp}.c > /dev/null 2>&1 |
353 | MY_CC=$(tc-getCC) |
| 324 | ret=$? |
354 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
|
|
355 | local ret=$? |
| 325 | rm -f ${temp}.c |
356 | rm -f ${temp}.c |
| 326 | [ "$ret" != "1" ] && return 0 |
357 | [ "$ret" != "1" ] && return 0 |
| 327 | return 1 |
358 | return 1 |
| 328 | } |
359 | } |
| 329 | |
360 | |
| 330 | has_m32() { |
361 | has_m32() { |
| 331 | # this doesnt test if the flag is accepted, it tests if the flag |
362 | # 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! |
363 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 333 | # please dont replace this function with test_flag in some future |
364 | # please dont replace this function with test_flag in some future |
| 334 | # clean-up! |
365 | # clean-up! |
| 335 | temp=`mktemp` |
366 | local temp="$(emktemp)" |
| 336 | echo "int main() { return(0); }" > ${temp}.c |
367 | echo "int main() { return(0); }" > ${temp}.c |
| 337 | ${CC/ .*/} -m32 -o /dev/null ${temp}.c > /dev/null 2>&1 |
368 | MY_CC=$(tc-getCC) |
| 338 | ret=$? |
369 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
|
|
370 | local ret=$? |
| 339 | rm -f ${temp}.c |
371 | rm -f ${temp}.c |
| 340 | [ "$ret" != "1" ] && return 0 |
372 | [ "$ret" != "1" ] && return 0 |
| 341 | return 1 |
373 | return 1 |
| 342 | } |
374 | } |
| 343 | |
375 | |
| … | |
… | |
| 388 | |
420 | |
| 389 | etexec-flags() { |
421 | etexec-flags() { |
| 390 | # if you're not using a hardened compiler you wont need this |
422 | # if you're not using a hardened compiler you wont need this |
| 391 | # PIC/no-pic kludge in the first place. |
423 | # PIC/no-pic kludge in the first place. |
| 392 | has_hardened || return 0 |
424 | has_hardened || return 0 |
|
|
425 | use amd64 && return 0 |
|
|
426 | use mips && return 0 |
| 393 | |
427 | |
| 394 | if has_pie || has_pic; then |
428 | if has_pie || has_pic; then |
| 395 | [ -z "`is-flag -fno-pic`" ] && |
429 | [ -z "`is-flag -fno-pic`" ] && |
| 396 | export CFLAGS="${CFLAGS} `test_flag -fno-pic`" |
430 | export CFLAGS="${CFLAGS} `test_flag -fno-pic`" |
| 397 | [ -z "`is-flag -nopie`" ] && |
431 | [ -z "`is-flag -nopie`" ] && |
| … | |
… | |
| 405 | [ -z "`is-flag -fno-stack-protector`" ] && |
439 | [ -z "`is-flag -fno-stack-protector`" ] && |
| 406 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
440 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
| 407 | fi |
441 | fi |
| 408 | return 0 |
442 | return 0 |
| 409 | } |
443 | } |
|
|
444 | |
|
|
445 | # This is thanks to great work from Paul de Vrieze <gentoo-user@devrieze.net>, |
|
|
446 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
|
|
447 | # fixes. |
|
|
448 | # |
|
|
449 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
|
|
450 | gcc2-flags() { |
|
|
451 | CFLAGS=${CFLAGS//pentium-mmx/i586} |
|
|
452 | CFLAGS=${CFLAGS//pentium[234]/i686} |
|
|
453 | CFLAGS=${CFLAGS//k6-[23]/k6} |
|
|
454 | CFLAGS=${CFLAGS//athlon-tbird/i686} |
|
|
455 | CFLAGS=${CFLAGS//athlon-4/i686} |
|
|
456 | CFLAGS=${CFLAGS//athlon-[xm]p/i686} |
|
|
457 | CFLAGS=${CFLAGS//athlon/i686} |
|
|
458 | |
|
|
459 | CXXFLAGS=${CXXFLAGS//pentium-mmx/i586} |
|
|
460 | CXXFLAGS=${CXXFLAGS//pentium[234]/i686} |
|
|
461 | CXXFLAGS=${CXXFLAGS//k6-[23]/k6} |
|
|
462 | CXXFLAGS=${CXXFLAGS//athlon-tbird/i686} |
|
|
463 | CXXFLAGS=${CXXFLAGS//athlon-4/i686} |
|
|
464 | CXXFLAGS=${CXXFLAGS//athlon-[xm]p/i686} |
|
|
465 | CXXFLAGS=${CXXFLAGS//athlon/i686} |
|
|
466 | |
|
|
467 | if [ "$ARCH" = alpha ]; then |
|
|
468 | CHOST=${CHOST/#alphaev6[78]/alphaev6} |
|
|
469 | CFLAGS=${CFLAGS//ev6[78]/ev6} |
|
|
470 | CXXFLAGS=${CXXFLAGS//ev6[78]/ev6} |
|
|
471 | fi |
|
|
472 | |
|
|
473 | export CFLAGS CXXFLAGS |
|
|
474 | } |