| 1 | # Copyright 1999-2008 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.126 2008/11/03 05:52:39 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.159 2011/12/07 06:42:40 vapier 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 |
| … | |
… | |
| 31 | setup-allowed-flags() { |
31 | setup-allowed-flags() { |
| 32 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
32 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 33 | export ALLOWED_FLAGS="-pipe" |
33 | export ALLOWED_FLAGS="-pipe" |
| 34 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
34 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 35 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
35 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 36 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking" |
36 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-strict-overflow" |
| 37 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
37 | export ALLOWED_FLAGS="${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+" |
38 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
| 39 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
39 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident -fpermissive" |
| 40 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -W* -w" |
40 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -W* -w" |
| 41 | fi |
41 | fi |
| 42 | # allow a bunch of flags that negate features / control ABI |
42 | # allow a bunch of flags that negate features / control ABI |
| 43 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all \ |
43 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all \ |
| 44 | -fno-strict-aliasing -fno-bounds-checking" |
44 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow -fno-omit-frame-pointer" |
| 45 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
45 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
| 46 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
46 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 \ |
|
|
47 | -mno-sse4.2 -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow \ |
|
|
48 | -mno-popcnt -mno-abm \ |
| 47 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
49 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \ |
| 48 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
50 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
| 49 | -mieee -mieee-with-inexact -mschedule \ |
51 | -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \ |
| 50 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
52 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
| 51 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
53 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
| 52 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
54 | -m32 -m64 -mx32 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
| 53 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
55 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
| 54 | -msecure-plt -m*-toc -D*" |
56 | -msecure-plt -m*-toc -D* -U*" |
|
|
57 | |
|
|
58 | # 4.5 |
|
|
59 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-fma4 -mno-movbe -mno-xop -mno-lwp" |
|
|
60 | # 4.6 |
|
|
61 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-fsgsbase -mno-rdrnd -mno-f16c \ |
|
|
62 | -mno-bmi -mno-tbm" |
| 55 | |
63 | |
| 56 | # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing |
64 | # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing |
| 57 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
65 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 58 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
66 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
| 59 | return 0 |
67 | return 0 |
| … | |
… | |
| 71 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
79 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
| 72 | gcc-specs-pie || continue |
80 | gcc-specs-pie || continue |
| 73 | is-flagq -nopie || append-flags -nopie;; |
81 | is-flagq -nopie || append-flags -nopie;; |
| 74 | -fstack-protector) |
82 | -fstack-protector) |
| 75 | gcc-specs-ssp || continue |
83 | gcc-specs-ssp || continue |
| 76 | is-flagq -fno-stack-protector || append-flags -fno-stack-protector;; |
84 | is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);; |
| 77 | -fstack-protector-all) |
85 | -fstack-protector-all) |
| 78 | gcc-specs-ssp-to-all || continue |
86 | gcc-specs-ssp-to-all || continue |
| 79 | is-flagq -fno-stack-protector-all || append-flags -fno-stack-protector-all;; |
87 | is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);; |
|
|
88 | -fno-strict-overflow) |
|
|
89 | gcc-specs-nostrict || continue |
|
|
90 | is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);; |
| 80 | esac |
91 | esac |
| 81 | done |
92 | done |
| 82 | } |
93 | } |
| 83 | |
94 | |
| 84 | # Remove occurrences of strings from variable given in $1 |
95 | # Remove occurrences of strings from variable given in $1 |
| … | |
… | |
| 117 | |
128 | |
| 118 | # @FUNCTION: filter-lfs-flags |
129 | # @FUNCTION: filter-lfs-flags |
| 119 | # @DESCRIPTION: |
130 | # @DESCRIPTION: |
| 120 | # Remove flags that enable Large File Support. |
131 | # Remove flags that enable Large File Support. |
| 121 | filter-lfs-flags() { |
132 | filter-lfs-flags() { |
| 122 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
133 | [[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments" |
|
|
134 | # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html |
|
|
135 | # _LARGEFILE_SOURCE: enable support for new LFS funcs (ftello/etc...) |
|
|
136 | # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...) |
|
|
137 | # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t) |
| 123 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
138 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 124 | } |
139 | } |
| 125 | |
140 | |
| 126 | # @FUNCTION: append-cppflags |
141 | # @FUNCTION: append-cppflags |
| 127 | # @USAGE: <flags> |
142 | # @USAGE: <flags> |
| 128 | # @DESCRIPTION: |
143 | # @DESCRIPTION: |
| 129 | # Add extra <flags> to the current CPPFLAGS. |
144 | # Add extra <flags> to the current CPPFLAGS. |
| 130 | append-cppflags() { |
145 | append-cppflags() { |
| 131 | [[ -z $* ]] && return 0 |
146 | [[ $# -eq 0 ]] && return 0 |
| 132 | export CPPFLAGS="${CPPFLAGS} $*" |
147 | export CPPFLAGS="${CPPFLAGS} $*" |
|
|
148 | return 0 |
|
|
149 | } |
|
|
150 | |
|
|
151 | # @FUNCTION: append-cflags |
|
|
152 | # @USAGE: <flags> |
|
|
153 | # @DESCRIPTION: |
|
|
154 | # Add extra <flags> to the current CFLAGS. |
|
|
155 | append-cflags() { |
|
|
156 | [[ $# -eq 0 ]] && return 0 |
|
|
157 | export CFLAGS=$(test-flags-CC ${CFLAGS} "$@") |
|
|
158 | return 0 |
|
|
159 | } |
|
|
160 | |
|
|
161 | # @FUNCTION: append-cxxflags |
|
|
162 | # @USAGE: <flags> |
|
|
163 | # @DESCRIPTION: |
|
|
164 | # Add extra <flags> to the current CXXFLAGS. |
|
|
165 | append-cxxflags() { |
|
|
166 | [[ $# -eq 0 ]] && return 0 |
|
|
167 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS} "$@") |
| 133 | return 0 |
168 | return 0 |
| 134 | } |
169 | } |
| 135 | |
170 | |
| 136 | # @FUNCTION: append-fflags |
171 | # @FUNCTION: append-fflags |
| 137 | # @USAGE: <flags> |
172 | # @USAGE: <flags> |
| 138 | # @DESCRIPTION: |
173 | # @DESCRIPTION: |
| 139 | # Add extra <flags> to the current {F,FC}FLAGS. |
174 | # Add extra <flags> to the current {F,FC}FLAGS. |
| 140 | append-fflags() { |
175 | append-fflags() { |
| 141 | [[ -z $* ]] && return 0 |
176 | [[ $# -eq 0 ]] && return 0 |
| 142 | export FFLAGS="${FFLAGS} $*" |
177 | export FFLAGS=$(test-flags-F77 ${FFLAGS} "$@") |
| 143 | export FCFLAGS="${FCFLAGS} $*" |
178 | export FCFLAGS=$(test-flags-FC ${FCFLAGS} "$@") |
| 144 | return 0 |
179 | return 0 |
| 145 | } |
180 | } |
| 146 | |
181 | |
| 147 | # @FUNCTION: append-lfs-flags |
182 | # @FUNCTION: append-lfs-flags |
| 148 | # @DESCRIPTION: |
183 | # @DESCRIPTION: |
| 149 | # Add flags that enable Large File Support. |
184 | # Add flags that enable Large File Support. |
| 150 | append-lfs-flags() { |
185 | append-lfs-flags() { |
| 151 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
186 | [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments" |
|
|
187 | # see comments in filter-lfs-flags func for meaning of these |
| 152 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
188 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 153 | } |
189 | } |
| 154 | |
190 | |
| 155 | # @FUNCTION: append-flags |
191 | # @FUNCTION: append-flags |
| 156 | # @USAGE: <flags> |
192 | # @USAGE: <flags> |
| 157 | # @DESCRIPTION: |
193 | # @DESCRIPTION: |
| 158 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
194 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
| 159 | append-flags() { |
195 | append-flags() { |
| 160 | [[ -z $* ]] && return 0 |
196 | [[ $# -eq 0 ]] && return 0 |
| 161 | export CFLAGS="${CFLAGS} $*" |
197 | append-cflags "$@" |
| 162 | export CXXFLAGS="${CXXFLAGS} $*" |
198 | append-cxxflags "$@" |
| 163 | export FFLAGS="${FFLAGS} $*" |
199 | append-fflags "$@" |
| 164 | export FCFLAGS="${FCFLAGS} $*" |
|
|
| 165 | return 0 |
200 | return 0 |
| 166 | } |
201 | } |
| 167 | |
202 | |
| 168 | # @FUNCTION: replace-flags |
203 | # @FUNCTION: replace-flags |
| 169 | # @USAGE: <old> <new> |
204 | # @USAGE: <old> <new> |
| … | |
… | |
| 299 | local NEW_CXXFLAGS="" |
334 | local NEW_CXXFLAGS="" |
| 300 | local NEW_FFLAGS="" |
335 | local NEW_FFLAGS="" |
| 301 | local NEW_FCFLAGS="" |
336 | local NEW_FCFLAGS="" |
| 302 | |
337 | |
| 303 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
338 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 304 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
339 | if has "~$(tc-arch)" ${ACCEPT_KEYWORDS} ; then |
| 305 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
340 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 306 | fi |
341 | fi |
| 307 | |
342 | |
| 308 | set -f # disable pathname expansion |
343 | set -f # disable pathname expansion |
| 309 | |
344 | |
| … | |
… | |
| 372 | |
407 | |
| 373 | test-flag-PROG() { |
408 | test-flag-PROG() { |
| 374 | local comp=$1 |
409 | local comp=$1 |
| 375 | local flags="$2" |
410 | local flags="$2" |
| 376 | |
411 | |
| 377 | [[ -z ${comp} || -z ${flags} ]] && \ |
412 | [[ -z ${comp} || -z ${flags} ]] && return 1 |
| 378 | return 1 |
|
|
| 379 | |
413 | |
|
|
414 | # use -c so we can test the assembler as well |
| 380 | local PROG=$(tc-get${comp}) |
415 | local PROG=$(tc-get${comp}) |
| 381 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
416 | ${PROG} ${flags} -c -o /dev/null -xc /dev/null \ |
| 382 | > /dev/null 2>&1 |
417 | > /dev/null 2>&1 |
| 383 | } |
418 | } |
| 384 | |
419 | |
| 385 | # @FUNCTION: test-flag-CC |
420 | # @FUNCTION: test-flag-CC |
| 386 | # @USAGE: <flag> |
421 | # @USAGE: <flag> |
| … | |
… | |
| 413 | |
448 | |
| 414 | shift |
449 | shift |
| 415 | |
450 | |
| 416 | [[ -z ${comp} ]] && return 1 |
451 | [[ -z ${comp} ]] && return 1 |
| 417 | |
452 | |
| 418 | x="" |
|
|
| 419 | for x in "$@" ; do |
453 | for x in "$@" ; do |
| 420 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
454 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
| 421 | done |
455 | done |
| 422 | |
456 | |
| 423 | echo "${flags}" |
457 | echo "${flags}" |
| … | |
… | |
| 454 | # @USAGE: <flags> |
488 | # @USAGE: <flags> |
| 455 | # @DESCRIPTION: |
489 | # @DESCRIPTION: |
| 456 | # Short-hand that should hopefully work for both C and C++ compiler, but |
490 | # Short-hand that should hopefully work for both C and C++ compiler, but |
| 457 | # its really only present due to the append-flags() abomination. |
491 | # its really only present due to the append-flags() abomination. |
| 458 | test-flags() { test-flags-CC "$@"; } |
492 | test-flags() { test-flags-CC "$@"; } |
| 459 | |
|
|
| 460 | # @FUNCTION: test_flag |
|
|
| 461 | # @DESCRIPTION: |
|
|
| 462 | # DEPRICIATED, use test-flags() |
|
|
| 463 | test_flag() { |
|
|
| 464 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
|
|
| 465 | |
|
|
| 466 | test-flags-CC "$@" |
|
|
| 467 | } |
|
|
| 468 | |
493 | |
| 469 | # @FUNCTION: test_version_info |
494 | # @FUNCTION: test_version_info |
| 470 | # @USAGE: <version> |
495 | # @USAGE: <version> |
| 471 | # @DESCRIPTION: |
496 | # @DESCRIPTION: |
| 472 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
497 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
| … | |
… | |
| 508 | fi |
533 | fi |
| 509 | done |
534 | done |
| 510 | return 1 |
535 | return 1 |
| 511 | } |
536 | } |
| 512 | |
537 | |
| 513 | # @FUNCTION: has_hardened |
538 | # DEAD FUNCS. Remove by Dec 2011. |
| 514 | # @DESCRIPTION: |
539 | test_flag() { die "$0: deprecated, please use test-flags()!" ; } |
| 515 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
|
|
| 516 | has_hardened() { |
|
|
| 517 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
540 | has_hardened() { die "$0: deprecated, please use gcc-specs-{relro,now}()!" ; } |
| 518 | |
|
|
| 519 | test_version_info Hardened && return 0 |
|
|
| 520 | # The specs file wont exist unless gcc has GCC_SPECS support |
|
|
| 521 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
|
|
| 522 | } |
|
|
| 523 | |
|
|
| 524 | # @FUNCTION: has_pic |
|
|
| 525 | # @DESCRIPTION: |
|
|
| 526 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
| 527 | # indicate whether PIC is set |
|
|
| 528 | has_pic() { |
|
|
| 529 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
541 | has_pic() { die "$0: deprecated, please use gcc-specs-pie()!" ; } |
| 530 | |
|
|
| 531 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
| 532 | ${CFLAGS/-fpic} != ${CFLAGS} ]] || \ |
|
|
| 533 | gcc-specs-pie |
|
|
| 534 | } |
|
|
| 535 | |
|
|
| 536 | # @FUNCTION: has_pie |
|
|
| 537 | # @DESCRIPTION: |
|
|
| 538 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
| 539 | # indicate whether PIE is set |
|
|
| 540 | has_pie() { |
|
|
| 541 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
542 | has_pie() { die "$0: deprecated, please use gcc-specs-pie()!" ; } |
| 542 | |
|
|
| 543 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
| 544 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
|
|
| 545 | gcc-specs-pie |
|
|
| 546 | } |
|
|
| 547 | |
|
|
| 548 | # @FUNCTION: has_ssp_all |
|
|
| 549 | # @DESCRIPTION: |
|
|
| 550 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
| 551 | # indicate whether code for SSP is being generated for all functions |
|
|
| 552 | has_ssp_all() { |
|
|
| 553 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
543 | has_ssp_all() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } |
| 554 | |
|
|
| 555 | # note; this matches only -fstack-protector-all |
|
|
| 556 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
|
|
| 557 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
|
|
| 558 | gcc-specs-ssp-all |
|
|
| 559 | } |
|
|
| 560 | |
|
|
| 561 | # @FUNCTION: has_ssp |
|
|
| 562 | # @DESCRIPTION: |
|
|
| 563 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
| 564 | # indicate whether code for SSP is being generated |
|
|
| 565 | has_ssp() { |
|
|
| 566 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
544 | has_ssp() { die "$0: deprecated, please use gcc-specs-ssp()!" ; } |
| 567 | |
|
|
| 568 | # note; this matches both -fstack-protector and -fstack-protector-all |
|
|
| 569 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
|
|
| 570 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
|
|
| 571 | gcc-specs-ssp |
|
|
| 572 | } |
|
|
| 573 | |
545 | |
| 574 | # @FUNCTION: has_m64 |
546 | # @FUNCTION: has_m64 |
| 575 | # @DESCRIPTION: |
547 | # @DESCRIPTION: |
| 576 | # This doesn't test if the flag is accepted, it tests if the flag actually |
548 | # This doesn't test if the flag is accepted, it tests if the flag actually |
| 577 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
549 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
| … | |
… | |
| 642 | fi |
614 | fi |
| 643 | |
615 | |
| 644 | export CFLAGS CXXFLAGS |
616 | export CFLAGS CXXFLAGS |
| 645 | } |
617 | } |
| 646 | |
618 | |
|
|
619 | # @FUNCTION: append-libs |
|
|
620 | # @USAGE: <libs> |
|
|
621 | # @DESCRIPTION: |
|
|
622 | # Add extra <libs> to the current LIBS. |
|
|
623 | append-libs() { |
|
|
624 | [[ $# -eq 0 ]] && return 0 |
|
|
625 | local flag |
|
|
626 | for flag in "$@"; do |
|
|
627 | [[ ${flag} == -l* ]] && flag=${flag#-l} |
|
|
628 | export LIBS="${LIBS} -l${flag}" |
|
|
629 | done |
|
|
630 | |
|
|
631 | return 0 |
|
|
632 | } |
|
|
633 | |
| 647 | # @FUNCTION: append-ldflags |
634 | # @FUNCTION: append-ldflags |
| 648 | # @USAGE: <flags> |
635 | # @USAGE: <flags> |
| 649 | # @DESCRIPTION: |
636 | # @DESCRIPTION: |
| 650 | # Add extra <flags> to the current LDFLAGS. |
637 | # Add extra <flags> to the current LDFLAGS. |
| 651 | append-ldflags() { |
638 | append-ldflags() { |
| 652 | [[ -z $* ]] && return 0 |
639 | [[ $# -eq 0 ]] && return 0 |
| 653 | local flag |
640 | local flag |
| 654 | for flag in "$@"; do |
641 | for flag in "$@"; do |
| 655 | [[ ${flag} == -l* ]] && \ |
642 | [[ ${flag} == -l* ]] && \ |
| 656 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
643 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
| 657 | done |
644 | done |
| … | |
… | |
| 668 | _filter-var LDFLAGS "$@" |
655 | _filter-var LDFLAGS "$@" |
| 669 | return 0 |
656 | return 0 |
| 670 | } |
657 | } |
| 671 | |
658 | |
| 672 | # @FUNCTION: raw-ldflags |
659 | # @FUNCTION: raw-ldflags |
| 673 | # @USAGE: <flags> |
660 | # @USAGE: [flags] |
| 674 | # @DESCRIPTION: |
661 | # @DESCRIPTION: |
| 675 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
662 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 676 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
663 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 677 | # to gcc where it needs the '-Wl,'. |
664 | # to gcc where it needs the '-Wl,'. |
|
|
665 | # |
|
|
666 | # If no flags are specified, then default to ${LDFLAGS}. |
| 678 | raw-ldflags() { |
667 | raw-ldflags() { |
| 679 | local x input="$@" |
668 | local x input="$@" |
| 680 | [[ -z ${input} ]] && input=${LDFLAGS} |
669 | [[ -z ${input} ]] && input=${LDFLAGS} |
| 681 | set -- |
670 | set -- |
| 682 | for x in ${input} ; do |
671 | for x in ${input} ; do |
| … | |
… | |
| 684 | set -- "$@" ${x//,/ } |
673 | set -- "$@" ${x//,/ } |
| 685 | done |
674 | done |
| 686 | echo "$@" |
675 | echo "$@" |
| 687 | } |
676 | } |
| 688 | |
677 | |
| 689 | # @FUNCTION: bindnow-flags |
678 | # @FUNCTION: no-as-needed |
| 690 | # @RETURN: Returns the flags to enable "now" binding in the current selected linker. |
679 | # @RETURN: Flag to disable asneeded behavior for use with append-ldflags. |
| 691 | # @DESCRIPTION: |
680 | no-as-needed() { |
| 692 | # DEPRECATED - Gets the flags needed for "NOW" binding |
|
|
| 693 | bindnow-flags() { |
|
|
| 694 | ewarn "QA: stop using the bindnow-flags function ... simply drop it from your ebuild" >&2 |
|
|
| 695 | |
|
|
| 696 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
681 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
| 697 | *GNU* | *'with BFD'*) # GNU ld |
682 | *GNU*) # GNU ld |
| 698 | echo "-Wl,-z,now" ;; |
683 | echo "-Wl,--no-as-needed" ;; |
| 699 | *Apple*) # Darwin ld |
|
|
| 700 | echo "-bind_at_load" ;; |
|
|
| 701 | *) |
|
|
| 702 | # Some linkers just recognize -V instead of -v |
|
|
| 703 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
| 704 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
| 705 | echo "-Wl,-z,now" ;; |
|
|
| 706 | esac |
|
|
| 707 | ;; |
|
|
| 708 | esac |
684 | esac |
| 709 | } |
685 | } |
| 710 | |
|
|
| 711 | |
686 | |
| 712 | # Some tests for when we screw with things and want to make |
687 | # Some tests for when we screw with things and want to make |
| 713 | # sure we didn't break anything |
688 | # sure we didn't break anything |
| 714 | #TESTS() { |
689 | #TESTS() { |
| 715 | # CFLAGS="-a -b -c=1" |
690 | # CFLAGS="-a -b -c=1" |