| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2011 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.132 2009/01/21 00:42:20 gengor Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.163 2011/12/28 06:28:55 dirtyepic 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 | |
|
|
13 | if [[ ${___ECLASS_ONCE_FLAG_O_MATIC} != "recur -_+^+_- spank" ]] ; then |
|
|
14 | ___ECLASS_ONCE_FLAG_O_MATIC="recur -_+^+_- spank" |
| 12 | |
15 | |
| 13 | inherit eutils toolchain-funcs multilib |
16 | inherit eutils toolchain-funcs multilib |
| 14 | |
17 | |
| 15 | ################ DEPRECATED functions ################ |
18 | ################ DEPRECATED functions ################ |
| 16 | # The following are still present to avoid breaking existing |
19 | # The following are still present to avoid breaking existing |
| … | |
… | |
| 27 | |
30 | |
| 28 | |
31 | |
| 29 | # {C,CXX,F,FC}FLAGS that we allow in strip-flags |
32 | # {C,CXX,F,FC}FLAGS that we allow in strip-flags |
| 30 | # Note: shell globs and character lists are allowed |
33 | # Note: shell globs and character lists are allowed |
| 31 | setup-allowed-flags() { |
34 | setup-allowed-flags() { |
| 32 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
|
|
| 33 | export ALLOWED_FLAGS="-pipe" |
35 | ALLOWED_FLAGS="-pipe" |
| 34 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
36 | ALLOWED_FLAGS+=" -O -O1 -O2 -Os -mcpu -march -mtune" |
| 35 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
37 | ALLOWED_FLAGS+=" -fstack-protector -fstack-protector-all" |
| 36 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-strict-overflow" |
38 | ALLOWED_FLAGS+=" -fbounds-checking -fno-strict-overflow" |
| 37 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
39 | 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+" |
40 | ALLOWED_FLAGS+=" -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
| 39 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
41 | ALLOWED_FLAGS+=" -fno-ident -fpermissive" |
| 40 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -W* -w" |
42 | ALLOWED_FLAGS+=" -W* -w" |
| 41 | fi |
43 | |
| 42 | # allow a bunch of flags that negate features / control ABI |
44 | # allow a bunch of flags that negate features / control ABI |
| 43 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all \ |
45 | ALLOWED_FLAGS+=" -fno-stack-protector -fno-stack-protector-all \ |
| 44 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow" |
46 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow \ |
|
|
47 | -fno-omit-frame-pointer" |
| 45 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
48 | ALLOWED_FLAGS+=" -mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse \ |
| 46 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
49 | -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 \ |
|
|
50 | -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt \ |
| 47 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
51 | -mno-abm -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \ |
| 48 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
52 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
| 49 | -mieee -mieee-with-inexact -mschedule \ |
53 | -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \ |
| 50 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
54 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs -mflat -mno-flat \ |
| 51 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
55 | -mno-faster-structs -mfaster-structs -m32 -m64 -mx32 -mabi \ |
| 52 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
56 | -mlittle-endian -mbig-endian -EL -EB -fPIC -mlive-g0 -mcmodel \ |
| 53 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
57 | -mstack-bias -mno-stack-bias -msecure-plt -m*-toc -D* -U*" |
| 54 | -msecure-plt -m*-toc -D* -U*" |
|
|
| 55 | |
58 | |
| 56 | # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing |
59 | # 4.5 |
| 57 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
60 | ALLOWED_FLAGS+=" -mno-fma4 -mno-movbe -mno-xop -mno-lwp" |
| 58 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
61 | # 4.6 |
|
|
62 | ALLOWED_FLAGS+=" -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm" |
|
|
63 | |
|
|
64 | export ALLOWED_FLAGS |
| 59 | return 0 |
65 | return 0 |
| 60 | } |
66 | } |
| 61 | |
67 | |
| 62 | # inverted filters for hardened compiler. This is trying to unpick |
68 | # inverted filters for hardened compiler. This is trying to unpick |
| 63 | # the hardened compiler defaults. |
69 | # the hardened compiler defaults. |
| … | |
… | |
| 120 | |
126 | |
| 121 | # @FUNCTION: filter-lfs-flags |
127 | # @FUNCTION: filter-lfs-flags |
| 122 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| 123 | # Remove flags that enable Large File Support. |
129 | # Remove flags that enable Large File Support. |
| 124 | filter-lfs-flags() { |
130 | filter-lfs-flags() { |
| 125 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
131 | [[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments" |
|
|
132 | # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html |
|
|
133 | # _LARGEFILE_SOURCE: enable support for new LFS funcs (ftello/etc...) |
|
|
134 | # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...) |
|
|
135 | # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t) |
| 126 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
136 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 127 | } |
137 | } |
| 128 | |
138 | |
| 129 | # @FUNCTION: append-cppflags |
139 | # @FUNCTION: append-cppflags |
| 130 | # @USAGE: <flags> |
140 | # @USAGE: <flags> |
| 131 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 132 | # Add extra <flags> to the current CPPFLAGS. |
142 | # Add extra <flags> to the current CPPFLAGS. |
| 133 | append-cppflags() { |
143 | append-cppflags() { |
| 134 | [[ -z $* ]] && return 0 |
144 | [[ $# -eq 0 ]] && return 0 |
| 135 | export CPPFLAGS="${CPPFLAGS} $*" |
145 | export CPPFLAGS="${CPPFLAGS} $*" |
|
|
146 | return 0 |
|
|
147 | } |
|
|
148 | |
|
|
149 | # @FUNCTION: append-cflags |
|
|
150 | # @USAGE: <flags> |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Add extra <flags> to the current CFLAGS. |
|
|
153 | append-cflags() { |
|
|
154 | [[ $# -eq 0 ]] && return 0 |
|
|
155 | export CFLAGS=$(test-flags-CC ${CFLAGS} "$@") |
| 136 | return 0 |
156 | return 0 |
| 137 | } |
157 | } |
| 138 | |
158 | |
| 139 | # @FUNCTION: append-cxxflags |
159 | # @FUNCTION: append-cxxflags |
| 140 | # @USAGE: <flags> |
160 | # @USAGE: <flags> |
| 141 | # @DESCRIPTION: |
161 | # @DESCRIPTION: |
| 142 | # Add extra <flags> to the current CXXFLAGS. |
162 | # Add extra <flags> to the current CXXFLAGS. |
| 143 | append-cxxflags() { |
163 | append-cxxflags() { |
| 144 | [[ -z $* ]] && return 0 |
164 | [[ $# -eq 0 ]] && return 0 |
| 145 | export CXXFLAGS="${CXXFLAGS} $*" |
165 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS} "$@") |
| 146 | return 0 |
166 | return 0 |
| 147 | } |
167 | } |
| 148 | |
168 | |
| 149 | # @FUNCTION: append-fflags |
169 | # @FUNCTION: append-fflags |
| 150 | # @USAGE: <flags> |
170 | # @USAGE: <flags> |
| 151 | # @DESCRIPTION: |
171 | # @DESCRIPTION: |
| 152 | # Add extra <flags> to the current {F,FC}FLAGS. |
172 | # Add extra <flags> to the current {F,FC}FLAGS. |
| 153 | append-fflags() { |
173 | append-fflags() { |
| 154 | [[ -z $* ]] && return 0 |
174 | [[ $# -eq 0 ]] && return 0 |
| 155 | export FFLAGS="${FFLAGS} $*" |
175 | export FFLAGS=$(test-flags-F77 ${FFLAGS} "$@") |
| 156 | export FCFLAGS="${FCFLAGS} $*" |
176 | export FCFLAGS=$(test-flags-FC ${FCFLAGS} "$@") |
| 157 | return 0 |
177 | return 0 |
| 158 | } |
178 | } |
| 159 | |
179 | |
| 160 | # @FUNCTION: append-lfs-flags |
180 | # @FUNCTION: append-lfs-flags |
| 161 | # @DESCRIPTION: |
181 | # @DESCRIPTION: |
| 162 | # Add flags that enable Large File Support. |
182 | # Add flags that enable Large File Support. |
| 163 | append-lfs-flags() { |
183 | append-lfs-flags() { |
| 164 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
184 | [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments" |
|
|
185 | # see comments in filter-lfs-flags func for meaning of these |
| 165 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
186 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 166 | } |
187 | } |
| 167 | |
188 | |
| 168 | # @FUNCTION: append-flags |
189 | # @FUNCTION: append-flags |
| 169 | # @USAGE: <flags> |
190 | # @USAGE: <flags> |
| 170 | # @DESCRIPTION: |
191 | # @DESCRIPTION: |
| 171 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
192 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
| 172 | append-flags() { |
193 | append-flags() { |
| 173 | [[ -z $* ]] && return 0 |
194 | [[ $# -eq 0 ]] && return 0 |
| 174 | export CFLAGS="${CFLAGS} $*" |
195 | append-cflags "$@" |
| 175 | export CXXFLAGS="${CXXFLAGS} $*" |
196 | append-cxxflags "$@" |
| 176 | export FFLAGS="${FFLAGS} $*" |
197 | append-fflags "$@" |
| 177 | export FCFLAGS="${FCFLAGS} $*" |
|
|
| 178 | return 0 |
198 | return 0 |
| 179 | } |
199 | } |
| 180 | |
200 | |
| 181 | # @FUNCTION: replace-flags |
201 | # @FUNCTION: replace-flags |
| 182 | # @USAGE: <old> <new> |
202 | # @USAGE: <old> <new> |
| … | |
… | |
| 311 | local NEW_CFLAGS="" |
331 | local NEW_CFLAGS="" |
| 312 | local NEW_CXXFLAGS="" |
332 | local NEW_CXXFLAGS="" |
| 313 | local NEW_FFLAGS="" |
333 | local NEW_FFLAGS="" |
| 314 | local NEW_FCFLAGS="" |
334 | local NEW_FCFLAGS="" |
| 315 | |
335 | |
| 316 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
|
|
| 317 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
|
|
| 318 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
|
|
| 319 | fi |
|
|
| 320 | |
|
|
| 321 | set -f # disable pathname expansion |
336 | set -f # disable pathname expansion |
| 322 | |
337 | |
| 323 | for x in ${CFLAGS}; do |
338 | for x in ${CFLAGS}; do |
| 324 | for y in ${ALLOWED_FLAGS}; do |
339 | for y in ${ALLOWED_FLAGS}; do |
| 325 | flag=${x%%=*} |
340 | flag=${x%%=*} |
| … | |
… | |
| 385 | |
400 | |
| 386 | test-flag-PROG() { |
401 | test-flag-PROG() { |
| 387 | local comp=$1 |
402 | local comp=$1 |
| 388 | local flags="$2" |
403 | local flags="$2" |
| 389 | |
404 | |
| 390 | [[ -z ${comp} || -z ${flags} ]] && \ |
405 | [[ -z ${comp} || -z ${flags} ]] && return 1 |
| 391 | return 1 |
|
|
| 392 | |
406 | |
|
|
407 | # use -c so we can test the assembler as well |
| 393 | local PROG=$(tc-get${comp}) |
408 | local PROG=$(tc-get${comp}) |
| 394 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
409 | ${PROG} ${flags} -c -o /dev/null -xc /dev/null \ |
| 395 | > /dev/null 2>&1 |
410 | > /dev/null 2>&1 |
| 396 | } |
411 | } |
| 397 | |
412 | |
| 398 | # @FUNCTION: test-flag-CC |
413 | # @FUNCTION: test-flag-CC |
| 399 | # @USAGE: <flag> |
414 | # @USAGE: <flag> |
| … | |
… | |
| 426 | |
441 | |
| 427 | shift |
442 | shift |
| 428 | |
443 | |
| 429 | [[ -z ${comp} ]] && return 1 |
444 | [[ -z ${comp} ]] && return 1 |
| 430 | |
445 | |
| 431 | x="" |
|
|
| 432 | for x in "$@" ; do |
446 | for x in "$@" ; do |
| 433 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
447 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
| 434 | done |
448 | done |
| 435 | |
449 | |
| 436 | echo "${flags}" |
450 | echo "${flags}" |
| … | |
… | |
| 467 | # @USAGE: <flags> |
481 | # @USAGE: <flags> |
| 468 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 469 | # Short-hand that should hopefully work for both C and C++ compiler, but |
483 | # Short-hand that should hopefully work for both C and C++ compiler, but |
| 470 | # its really only present due to the append-flags() abomination. |
484 | # its really only present due to the append-flags() abomination. |
| 471 | test-flags() { test-flags-CC "$@"; } |
485 | test-flags() { test-flags-CC "$@"; } |
| 472 | |
|
|
| 473 | # @FUNCTION: test_flag |
|
|
| 474 | # @DESCRIPTION: |
|
|
| 475 | # DEPRICIATED, use test-flags() |
|
|
| 476 | test_flag() { |
|
|
| 477 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
|
|
| 478 | |
|
|
| 479 | test-flags-CC "$@" |
|
|
| 480 | } |
|
|
| 481 | |
486 | |
| 482 | # @FUNCTION: test_version_info |
487 | # @FUNCTION: test_version_info |
| 483 | # @USAGE: <version> |
488 | # @USAGE: <version> |
| 484 | # @DESCRIPTION: |
489 | # @DESCRIPTION: |
| 485 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
490 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
| … | |
… | |
| 521 | fi |
526 | fi |
| 522 | done |
527 | done |
| 523 | return 1 |
528 | return 1 |
| 524 | } |
529 | } |
| 525 | |
530 | |
| 526 | # @FUNCTION: has_hardened |
531 | # DEAD FUNCS. Remove by Dec 2011. |
| 527 | # @DESCRIPTION: |
532 | test_flag() { die "$0: deprecated, please use test-flags()!" ; } |
| 528 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
|
|
| 529 | has_hardened() { |
|
|
| 530 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
533 | has_hardened() { die "$0: deprecated, please use gcc-specs-{relro,now}()!" ; } |
| 531 | |
|
|
| 532 | test_version_info Hardened && return 0 |
|
|
| 533 | # The specs file wont exist unless gcc has GCC_SPECS support |
|
|
| 534 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
|
|
| 535 | } |
|
|
| 536 | |
|
|
| 537 | # @FUNCTION: has_pic |
|
|
| 538 | # @DESCRIPTION: |
|
|
| 539 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
| 540 | # indicate whether PIC is set |
|
|
| 541 | has_pic() { |
|
|
| 542 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
534 | has_pic() { die "$0: deprecated, please use gcc-specs-pie()!" ; } |
| 543 | |
|
|
| 544 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
| 545 | ${CFLAGS/-fpic} != ${CFLAGS} ]] || \ |
|
|
| 546 | gcc-specs-pie |
|
|
| 547 | } |
|
|
| 548 | |
|
|
| 549 | # @FUNCTION: has_pie |
|
|
| 550 | # @DESCRIPTION: |
|
|
| 551 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
| 552 | # indicate whether PIE is set |
|
|
| 553 | has_pie() { |
|
|
| 554 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
535 | has_pie() { die "$0: deprecated, please use gcc-specs-pie()!" ; } |
| 555 | |
|
|
| 556 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
| 557 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
|
|
| 558 | gcc-specs-pie |
|
|
| 559 | } |
|
|
| 560 | |
|
|
| 561 | # @FUNCTION: has_ssp_all |
|
|
| 562 | # @DESCRIPTION: |
|
|
| 563 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
| 564 | # indicate whether code for SSP is being generated for all functions |
|
|
| 565 | has_ssp_all() { |
|
|
| 566 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
536 | has_ssp_all() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } |
| 567 | |
|
|
| 568 | # note; this matches only -fstack-protector-all |
|
|
| 569 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
|
|
| 570 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
|
|
| 571 | gcc-specs-ssp-to-all |
|
|
| 572 | } |
|
|
| 573 | |
|
|
| 574 | # @FUNCTION: has_ssp |
|
|
| 575 | # @DESCRIPTION: |
|
|
| 576 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
| 577 | # indicate whether code for SSP is being generated |
|
|
| 578 | has_ssp() { |
|
|
| 579 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
537 | has_ssp() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } |
| 580 | |
|
|
| 581 | # note; this matches both -fstack-protector and -fstack-protector-all |
|
|
| 582 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
|
|
| 583 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
|
|
| 584 | gcc-specs-ssp |
|
|
| 585 | } |
|
|
| 586 | |
538 | |
| 587 | # @FUNCTION: has_m64 |
539 | # @FUNCTION: has_m64 |
| 588 | # @DESCRIPTION: |
540 | # @DESCRIPTION: |
| 589 | # This doesn't test if the flag is accepted, it tests if the flag actually |
541 | # This doesn't test if the flag is accepted, it tests if the flag actually |
| 590 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
542 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
| … | |
… | |
| 655 | fi |
607 | fi |
| 656 | |
608 | |
| 657 | export CFLAGS CXXFLAGS |
609 | export CFLAGS CXXFLAGS |
| 658 | } |
610 | } |
| 659 | |
611 | |
|
|
612 | # @FUNCTION: append-libs |
|
|
613 | # @USAGE: <libs> |
|
|
614 | # @DESCRIPTION: |
|
|
615 | # Add extra <libs> to the current LIBS. |
|
|
616 | append-libs() { |
|
|
617 | [[ $# -eq 0 ]] && return 0 |
|
|
618 | local flag |
|
|
619 | for flag in "$@"; do |
|
|
620 | [[ ${flag} == -l* ]] && flag=${flag#-l} |
|
|
621 | export LIBS="${LIBS} -l${flag}" |
|
|
622 | done |
|
|
623 | |
|
|
624 | return 0 |
|
|
625 | } |
|
|
626 | |
| 660 | # @FUNCTION: append-ldflags |
627 | # @FUNCTION: append-ldflags |
| 661 | # @USAGE: <flags> |
628 | # @USAGE: <flags> |
| 662 | # @DESCRIPTION: |
629 | # @DESCRIPTION: |
| 663 | # Add extra <flags> to the current LDFLAGS. |
630 | # Add extra <flags> to the current LDFLAGS. |
| 664 | append-ldflags() { |
631 | append-ldflags() { |
| 665 | [[ -z $* ]] && return 0 |
632 | [[ $# -eq 0 ]] && return 0 |
| 666 | local flag |
633 | local flag |
| 667 | for flag in "$@"; do |
634 | for flag in "$@"; do |
| 668 | [[ ${flag} == -l* ]] && \ |
635 | [[ ${flag} == -l* ]] && \ |
| 669 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
636 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
| 670 | done |
637 | done |
| … | |
… | |
| 681 | _filter-var LDFLAGS "$@" |
648 | _filter-var LDFLAGS "$@" |
| 682 | return 0 |
649 | return 0 |
| 683 | } |
650 | } |
| 684 | |
651 | |
| 685 | # @FUNCTION: raw-ldflags |
652 | # @FUNCTION: raw-ldflags |
| 686 | # @USAGE: <flags> |
653 | # @USAGE: [flags] |
| 687 | # @DESCRIPTION: |
654 | # @DESCRIPTION: |
| 688 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
655 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 689 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
656 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 690 | # to gcc where it needs the '-Wl,'. |
657 | # to gcc where it needs the '-Wl,'. |
|
|
658 | # |
|
|
659 | # If no flags are specified, then default to ${LDFLAGS}. |
| 691 | raw-ldflags() { |
660 | raw-ldflags() { |
| 692 | local x input="$@" |
661 | local x input="$@" |
| 693 | [[ -z ${input} ]] && input=${LDFLAGS} |
662 | [[ -z ${input} ]] && input=${LDFLAGS} |
| 694 | set -- |
663 | set -- |
| 695 | for x in ${input} ; do |
664 | for x in ${input} ; do |
| … | |
… | |
| 697 | set -- "$@" ${x//,/ } |
666 | set -- "$@" ${x//,/ } |
| 698 | done |
667 | done |
| 699 | echo "$@" |
668 | echo "$@" |
| 700 | } |
669 | } |
| 701 | |
670 | |
| 702 | # @FUNCTION: bindnow-flags |
671 | # @FUNCTION: no-as-needed |
| 703 | # @RETURN: Returns the flags to enable "now" binding in the current selected linker. |
672 | # @RETURN: Flag to disable asneeded behavior for use with append-ldflags. |
| 704 | # @DESCRIPTION: |
673 | no-as-needed() { |
| 705 | # DEPRECATED - Gets the flags needed for "NOW" binding |
674 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
| 706 | bindnow-flags() { |
675 | *GNU*) # GNU ld |
| 707 | ewarn "QA: stop using the bindnow-flags function ... simply drop it from your ebuild" |
676 | echo "-Wl,--no-as-needed" ;; |
|
|
677 | esac |
| 708 | } |
678 | } |
| 709 | |
679 | |
| 710 | |
680 | fi |
| 711 | # Some tests for when we screw with things and want to make |
|
|
| 712 | # sure we didn't break anything |
|
|
| 713 | #TESTS() { |
|
|
| 714 | # CFLAGS="-a -b -c=1" |
|
|
| 715 | # CXXFLAGS="-x -y -z=2" |
|
|
| 716 | # LDFLAGS="-l -m -n=3" |
|
|
| 717 | # |
|
|
| 718 | # die() { exit 1; } |
|
|
| 719 | # (is-flag 1 2 3) && die |
|
|
| 720 | # (is-ldflag 1 2 3) && die |
|
|
| 721 | # |
|
|
| 722 | # is-flagq -l && die |
|
|
| 723 | # is-ldflagq -a && die |
|
|
| 724 | # is-flagq -a || die |
|
|
| 725 | # is-flagq -x || die |
|
|
| 726 | # is-ldflagq -n=* || die |
|
|
| 727 | # is-ldflagq -n && die |
|
|
| 728 | # |
|
|
| 729 | # strip-unsupported-flags |
|
|
| 730 | # [[ ${CFLAGS} == "-c=1" ]] || die |
|
|
| 731 | # [[ ${CXXFLAGS} == "-y -z=2" ]] || die |
|
|
| 732 | # |
|
|
| 733 | # echo "All tests pass" |
|
|
| 734 | #} |
|
|
| 735 | #TESTS |
|
|