| 1 | # Copyright 1999-2005 Gentoo Foundation |
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.92 2005/08/01 10:50:55 kevquinn Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.104 2006/01/14 10:52:12 kevquinn Exp $ |
| 4 | |
4 | |
| 5 | |
5 | |
| 6 | # need access to emktemp() |
6 | # need access to emktemp() |
| 7 | inherit eutils toolchain-funcs multilib |
7 | inherit eutils toolchain-funcs multilib |
| 8 | |
8 | |
| … | |
… | |
| 57 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
57 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
| 58 | # when 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 |
59 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
| 60 | # when only -fno-stack-protector is given |
60 | # when only -fno-stack-protector is given |
| 61 | # |
61 | # |
|
|
62 | #### bindnow-flags #### |
|
|
63 | # Returns the flags to enable "now" binding in the current selected linker. |
| 62 | # |
64 | # |
| 63 | ################ DEPRECATED functions ################ |
65 | ################ DEPRECATED functions ################ |
| 64 | # The following are still present to avoid breaking existing |
66 | # The following are still present to avoid breaking existing |
| 65 | # code more than necessary; however they are deprecated. Please |
67 | # code more than necessary; however they are deprecated. Please |
| 66 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
68 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
| … | |
… | |
| 147 | |
149 | |
| 148 | return 0 |
150 | return 0 |
| 149 | } |
151 | } |
| 150 | |
152 | |
| 151 | filter-lfs-flags() { |
153 | filter-lfs-flags() { |
|
|
154 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
| 152 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
155 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 153 | } |
156 | } |
| 154 | |
157 | |
| 155 | append-lfs-flags() { |
158 | append-lfs-flags() { |
|
|
159 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
| 156 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
160 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 157 | } |
161 | } |
| 158 | |
162 | |
| 159 | append-flags() { |
163 | append-flags() { |
| 160 | [[ -z $* ]] && return 0 |
164 | [[ -z $* ]] && return 0 |
| … | |
… | |
| 164 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
168 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
| 165 | return 0 |
169 | return 0 |
| 166 | } |
170 | } |
| 167 | |
171 | |
| 168 | replace-flags() { |
172 | replace-flags() { |
|
|
173 | [[ $# != 2 ]] \ |
|
|
174 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
|
|
175 | && die "replace-flags takes 2 arguments, not $#" |
|
|
176 | |
| 169 | local f fset |
177 | local f fset |
| 170 | declare -a new_CFLAGS new_CXXFLAGS |
178 | declare -a new_CFLAGS new_CXXFLAGS |
| 171 | |
179 | |
| 172 | for fset in CFLAGS CXXFLAGS; do |
180 | for fset in CFLAGS CXXFLAGS; do |
| 173 | # Looping over the flags instead of using a global |
181 | # Looping over the flags instead of using a global |
| … | |
… | |
| 285 | export CFLAGS="${NEW_CFLAGS}" |
293 | export CFLAGS="${NEW_CFLAGS}" |
| 286 | export CXXFLAGS="${NEW_CXXFLAGS}" |
294 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 287 | return 0 |
295 | return 0 |
| 288 | } |
296 | } |
| 289 | |
297 | |
|
|
298 | test-flag-PROG() { |
|
|
299 | local comp=$1 |
|
|
300 | local flags="$2" |
|
|
301 | |
|
|
302 | [[ -z ${comp} || -z ${flags} ]] && \ |
|
|
303 | return 1 |
|
|
304 | |
|
|
305 | local PROG=$(tc-get${comp}) |
|
|
306 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
|
|
307 | > /dev/null 2>&1 |
|
|
308 | } |
|
|
309 | |
|
|
310 | # Returns true if C compiler support given flag |
|
|
311 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
|
|
312 | |
|
|
313 | # Returns true if C++ compiler support given flag |
|
|
314 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
315 | |
|
|
316 | test-flags-PROG() { |
|
|
317 | local comp=$1 |
|
|
318 | local flags |
|
|
319 | local x |
|
|
320 | |
|
|
321 | shift |
|
|
322 | |
|
|
323 | [[ -z ${comp} ]] && \ |
|
|
324 | return 1 |
|
|
325 | |
|
|
326 | for x in "$@" ; do |
|
|
327 | test-flag-${comp} "${x}" && flags="${flags} ${x}" |
|
|
328 | done |
|
|
329 | |
|
|
330 | echo "${flags}" |
|
|
331 | |
|
|
332 | # Just bail if we dont have any flags |
|
|
333 | [[ -n ${flags} ]] |
|
|
334 | } |
|
|
335 | |
|
|
336 | # Returns (echo's) the given flags supported by the C compiler |
|
|
337 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
|
|
338 | |
|
|
339 | # Returns (echo's) the given flags supported by the C++ compiler |
|
|
340 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
|
|
341 | |
|
|
342 | # Short-hand that should hopefully work for both C and C++ compiler, but |
|
|
343 | # its really only present due to the append-flags() abomination. |
|
|
344 | test-flags() { test-flags-CC "$@"; } |
|
|
345 | |
|
|
346 | # Deprecated, use test-flags() |
| 290 | test_flag() { |
347 | test_flag() { |
| 291 | if $(tc-getCC) -S -xc "$@" -o "$(emktemp)" /dev/null &>/dev/null; then |
348 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
| 292 | printf "%s\n" "$*" |
349 | |
| 293 | return 0 |
350 | test-flags-CC "$@" |
| 294 | fi |
|
|
| 295 | return 1 |
|
|
| 296 | } |
351 | } |
| 297 | |
352 | |
| 298 | test_version_info() { |
353 | test_version_info() { |
| 299 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
354 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 300 | return 0 |
355 | return 0 |
| … | |
… | |
| 302 | return 1 |
357 | return 1 |
| 303 | fi |
358 | fi |
| 304 | } |
359 | } |
| 305 | |
360 | |
| 306 | strip-unsupported-flags() { |
361 | strip-unsupported-flags() { |
| 307 | local NEW_CFLAGS NEW_CXXFLAGS |
362 | local x NEW_CFLAGS NEW_CXXFLAGS |
| 308 | |
363 | |
| 309 | for x in ${CFLAGS} ; do |
364 | for x in ${CFLAGS} ; do |
| 310 | NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`" |
365 | NEW_CFLAGS="${NEW_CFLAGS} $(test-flags ${x})" |
| 311 | done |
366 | done |
| 312 | for x in ${CXXFLAGS} ; do |
367 | for x in ${CXXFLAGS} ; do |
| 313 | NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`" |
368 | NEW_CXXFLAGS="${NEW_CXXFLAGS} $(test-flags ${x})" |
| 314 | done |
369 | done |
| 315 | |
370 | |
| 316 | export CFLAGS="${NEW_CFLAGS}" |
371 | export CFLAGS=${NEW_CFLAGS} |
| 317 | export CXXFLAGS="${NEW_CXXFLAGS}" |
372 | export CXXFLAGS=${NEW_CXXFLAGS} |
| 318 | } |
373 | } |
| 319 | |
374 | |
| 320 | get-flag() { |
375 | get-flag() { |
| 321 | local f findflag="$1" |
376 | local f findflag="$1" |
| 322 | |
377 | |
| … | |
… | |
| 334 | return 1 |
389 | return 1 |
| 335 | } |
390 | } |
| 336 | |
391 | |
| 337 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
392 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
| 338 | has_hardened() { |
393 | has_hardened() { |
|
|
394 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
|
|
395 | |
| 339 | test_version_info Hardened && return 0 |
396 | test_version_info Hardened && return 0 |
| 340 | # the specs file wont exist unless gcc has GCC_SPECS support |
397 | # The specs file wont exist unless gcc has GCC_SPECS support |
| 341 | [ -f "${GCC_SPECS}" -a "${GCC_SPECS}" != "${GCC_SPECS/hardened/}" ] && \ |
398 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
| 342 | return 0 |
|
|
| 343 | return 1 |
|
|
| 344 | } |
399 | } |
| 345 | |
400 | |
| 346 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
401 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
| 347 | # indicate whether PIC is set |
402 | # indicate whether PIC is set |
| 348 | has_pic() { |
403 | has_pic() { |
| 349 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
404 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
| 350 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
405 | |
|
|
406 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
407 | ${CFLAGS/-fpic} != ${CFLAGS} || \ |
| 351 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
408 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__) ]] |
| 352 | return 1 |
|
|
| 353 | } |
409 | } |
| 354 | |
410 | |
| 355 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
411 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
| 356 | # indicate whether PIE is set |
412 | # indicate whether PIE is set |
| 357 | has_pie() { |
413 | has_pie() { |
| 358 | [ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0 |
414 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
| 359 | [ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0 |
415 | |
|
|
416 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
417 | ${CFLAGS/-fpie} != ${CFLAGS} || \ |
|
|
418 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__) || \ |
| 360 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__)" ] && return 0 |
419 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__) ]] |
| 361 | # test PIC while waiting for specs to be updated to generate __PIE__ |
420 | # 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 | } |
421 | } |
| 365 | |
422 | |
| 366 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
423 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
| 367 | # indicate whether code for SSP is being generated for all functions |
424 | # indicate whether code for SSP is being generated for all functions |
| 368 | has_ssp_all() { |
425 | has_ssp_all() { |
|
|
426 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
|
|
427 | |
| 369 | # note; this matches only -fstack-protector-all |
428 | # note; this matches only -fstack-protector-all |
| 370 | [ "${CFLAGS/-fstack-protector-all}" != "${CFLAGS}" ] && return 0 |
429 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
| 371 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__)" ] && return 0 |
430 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
| 372 | gcc-specs-ssp && return 0 |
431 | gcc-specs-ssp |
| 373 | return 1 |
|
|
| 374 | } |
432 | } |
| 375 | |
433 | |
| 376 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
434 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
| 377 | # indicate whether code for SSP is being generated |
435 | # indicate whether code for SSP is being generated |
| 378 | has_ssp() { |
436 | has_ssp() { |
|
|
437 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
|
|
438 | |
| 379 | # note; this matches both -fstack-protector and -fstack-protector-all |
439 | # note; this matches both -fstack-protector and -fstack-protector-all |
| 380 | [ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0 |
440 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
| 381 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__)" ] && return 0 |
441 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
| 382 | gcc-specs-ssp && return 0 |
442 | gcc-specs-ssp |
| 383 | return 1 |
|
|
| 384 | } |
443 | } |
| 385 | |
444 | |
| 386 | has_m64() { |
445 | has_m64() { |
| 387 | # this doesnt test if the flag is accepted, it tests if the flag |
446 | # 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! |
447 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 389 | # please dont replace this function with test_flag in some future |
448 | # please dont replace this function with test_flag in some future |
| 390 | # clean-up! |
449 | # clean-up! |
|
|
450 | |
| 391 | local temp="$(emktemp)" |
451 | local temp="$(emktemp)" |
| 392 | echo "int main() { return(0); }" > ${temp}.c |
452 | echo "int main() { return(0); }" > "${temp}".c |
| 393 | MY_CC=$(tc-getCC) |
453 | MY_CC=$(tc-getCC) |
| 394 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
454 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
| 395 | local ret=$? |
455 | local ret=$? |
| 396 | rm -f ${temp}.c |
456 | rm -f "${temp}".c |
| 397 | [ "$ret" != "1" ] && return 0 |
457 | [[ ${ret} != 1 ]] && return 0 |
| 398 | return 1 |
458 | return 1 |
| 399 | } |
459 | } |
| 400 | |
460 | |
| 401 | has_m32() { |
461 | has_m32() { |
| 402 | # this doesnt test if the flag is accepted, it tests if the flag |
462 | # this doesnt test if the flag is accepted, it tests if the flag |
| … | |
… | |
| 404 | # please dont replace this function with test_flag in some future |
464 | # please dont replace this function with test_flag in some future |
| 405 | # clean-up! |
465 | # clean-up! |
| 406 | |
466 | |
| 407 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
467 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
| 408 | |
468 | |
| 409 | local temp="$(emktemp)" |
469 | local temp=$(emktemp) |
| 410 | echo "int main() { return(0); }" > ${temp}.c |
470 | echo "int main() { return(0); }" > "${temp}".c |
| 411 | MY_CC=$(tc-getCC) |
471 | MY_CC=$(tc-getCC) |
| 412 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
472 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
| 413 | local ret=$? |
473 | local ret=$? |
| 414 | rm -f ${temp}.c |
474 | rm -f "${temp}".c |
| 415 | [ "$ret" != "1" ] && return 0 |
475 | [[ ${ret} != 1 ]] && return 0 |
| 416 | return 1 |
476 | return 1 |
| 417 | } |
477 | } |
| 418 | |
478 | |
| 419 | replace-sparc64-flags() { |
479 | replace-sparc64-flags() { |
| 420 | local SPARC64_CPUS="ultrasparc v9" |
480 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 421 | |
481 | |
| 422 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
482 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 423 | for x in ${SPARC64_CPUS}; do |
483 | for x in ${SPARC64_CPUS}; do |
| 424 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
484 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 425 | done |
485 | done |
| … | |
… | |
| 461 | || LDFLAGS=${LDFLAGS:1:${#LDFLAGS}-2} |
521 | || LDFLAGS=${LDFLAGS:1:${#LDFLAGS}-2} |
| 462 | export LDFLAGS |
522 | export LDFLAGS |
| 463 | return 0 |
523 | return 0 |
| 464 | } |
524 | } |
| 465 | |
525 | |
|
|
526 | # Turn C style ldflags (-Wl,-foo) into straight ldflags |
|
|
527 | raw-ldflags() { |
|
|
528 | local x input="$@" |
|
|
529 | [[ -z ${input} ]] && input=${LDFLAGS} |
|
|
530 | set -- |
|
|
531 | for x in ${input} ; do |
|
|
532 | x=${x#-Wl,} |
|
|
533 | set -- "$@" ${x//,/ } |
|
|
534 | done |
|
|
535 | echo "$@" |
|
|
536 | } |
|
|
537 | |
| 466 | fstack-flags() { |
538 | fstack-flags() { |
| 467 | if gcc-specs-ssp; then |
539 | if gcc-specs-ssp; then |
| 468 | [ -z "`is-flag -fno-stack-protector`" ] && |
540 | [ -z "`is-flag -fno-stack-protector`" ] && |
| 469 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
541 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
| 470 | fi |
542 | fi |
| … | |
… | |
| 490 | |
562 | |
| 491 | replace-cpu-flags ev6{7,8} ev6 |
563 | replace-cpu-flags ev6{7,8} ev6 |
| 492 | |
564 | |
| 493 | export CFLAGS CXXFLAGS |
565 | export CFLAGS CXXFLAGS |
| 494 | } |
566 | } |
|
|
567 | |
|
|
568 | # Gets the flags needed for "NOW" binding |
|
|
569 | bindnow-flags() { |
|
|
570 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
571 | *GNU* | *'with BFD'*) # GNU ld |
|
|
572 | echo "-Wl,-z,now" ;; |
|
|
573 | *Apple*) # Darwin ld |
|
|
574 | echo "-bind_at_load" ;; |
|
|
575 | *) |
|
|
576 | # Some linkers just recognize -V instead of -v |
|
|
577 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
578 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
579 | echo "-Wl,-z,now" ;; |
|
|
580 | esac |
|
|
581 | ;; |
|
|
582 | esac |
|
|
583 | } |