flag-o-matic.eclass: whitelist -mstackrealign for 'strip-flags'
[gentoo.git] / eclass / flag-o-matic.eclass
1 # Copyright 1999-2017 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3
4 # @ECLASS: flag-o-matic.eclass
5 # @MAINTAINER:
6 # toolchain@gentoo.org
7 # @BLURB: common functions to manipulate and query toolchain flags
8 # @DESCRIPTION:
9 # This eclass contains a suite of functions to help developers sanely
10 # and safely manage toolchain flags in their builds.
11
12 if [[ -z ${_FLAG_O_MATIC_ECLASS} ]]; then
13 _FLAG_O_MATIC_ECLASS=1
14
15 inherit eutils toolchain-funcs multilib
16
17 # Return all the flag variables that our high level funcs operate on.
18 all-flag-vars() {
19         echo {ADA,C,CPP,CXX,CCAS,F,FC,LD}FLAGS
20 }
21
22 # {C,CPP,CXX,CCAS,F,FC,LD}FLAGS that we allow in strip-flags
23 # Note: shell globs and character lists are allowed
24 setup-allowed-flags() {
25         ALLOWED_FLAGS=(
26                 -pipe -O '-O[12sg]' -mcpu -march -mtune
27                 '-fstack-protector*' '-fsanitize*' '-fstack-check*' -fno-stack-check
28                 -fbounds-check -fbounds-checking -fno-strict-overflow
29                 -fno-PIE -fno-pie -nopie -no-pie -fno-unit-at-a-time
30                 -g '-g[0-9]' -ggdb '-ggdb[0-9]' '-gdwarf-*' gstabs -gstabs+ -gz
31                 -fno-ident -fpermissive -frecord-gcc-switches
32                 '-fdiagnostics*' '-fplugin*'
33                 '-W*' -w
34
35                 # CPPFLAGS and LDFLAGS
36                 '-[DUILR]*' '-Wl,*'
37
38                 # Linker choice flag
39                 '-fuse-ld'
40         )
41
42         # allow a bunch of flags that negate features / control ABI
43         ALLOWED_FLAGS+=(
44                 '-fno-stack-protector*' '-fabi-version=*'
45                 -fno-strict-aliasing -fno-bounds-check -fno-bounds-checking -fstrict-overflow
46                 -fno-omit-frame-pointer '-fno-builtin*'
47         )
48         ALLOWED_FLAGS+=(
49                 -mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse
50                 -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2
51                 -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt
52                 -mno-abm -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt
53                 -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu
54                 -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe
55                 -mtls-direct-seg-refs -mno-tls-direct-seg-refs -mflat -mno-flat
56                 -mno-faster-structs -mfaster-structs -m32 -m64 -mx32 -mabi
57                 -mlittle-endian -mbig-endian -EL -EB -fPIC -mlive-g0 -mcmodel
58                 -mstack-bias -mno-stack-bias -msecure-plt '-m*-toc' -mfloat-abi
59                 -mfix-r10000 -mno-fix-r10000 -mthumb -marm
60
61                 # gcc 4.5
62                 -mno-fma4 -mno-movbe -mno-xop -mno-lwp
63                 # gcc 4.6
64                 -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm
65                 # gcc 4.7
66                 -mno-avx2 -mno-bmi2 -mno-fma -mno-lzcnt
67                 # gcc 4.8
68                 -mno-fxsr -mno-hle -mno-rtm -mno-xsave -mno-xsaveopt
69                 # gcc 4.9
70                 -mno-avx512cd -mno-avx512er -mno-avx512f -mno-avx512pf -mno-sha
71         )
72
73         # Allow some safe individual flags. Should come along with the bug reference.
74         ALLOWED_FLAGS+=(
75                 # Allow explicit stack realignment to run non-conformant
76                 # binaries: bug #677852
77                 -mstackrealign
78         )
79 }
80
81 # inverted filters for hardened compiler.  This is trying to unpick
82 # the hardened compiler defaults.
83 _filter-hardened() {
84         local f
85         for f in "$@" ; do
86                 case "${f}" in
87                         # Ideally we should only concern ourselves with PIE flags,
88                         # not -fPIC or -fpic, but too many places filter -fPIC without
89                         # thinking about -fPIE.
90                         -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie)
91                                 gcc-specs-pie || continue
92                                 if ! is-flagq -nopie && ! is-flagq -no-pie ; then
93                                         # Support older Gentoo form first (-nopie) before falling
94                                         # back to the official gcc-6+ form (-no-pie).
95                                         if test-flags -nopie >/dev/null ; then
96                                                 append-flags -nopie
97                                         else
98                                                 append-flags -no-pie
99                                         fi
100                                 fi
101                                 ;;
102                         -fstack-protector)
103                                 gcc-specs-ssp || continue
104                                 is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);;
105                         -fstack-protector-all)
106                                 gcc-specs-ssp-to-all || continue
107                                 is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);;
108                         -fno-strict-overflow)
109                                 gcc-specs-nostrict || continue
110                                 is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);;
111                 esac
112         done
113 }
114
115 # Remove occurrences of strings from variable given in $1
116 # Strings removed are matched as globs, so for example
117 # '-O*' would remove -O1, -O2 etc.
118 _filter-var() {
119         local f x var=$1 new=()
120         shift
121
122         for f in ${!var} ; do
123                 for x in "$@" ; do
124                         # Note this should work with globs like -O*
125                         [[ ${f} == ${x} ]] && continue 2
126                 done
127                 new+=( "${f}" )
128         done
129         export ${var}="${new[*]}"
130 }
131
132 # @FUNCTION: filter-flags
133 # @USAGE: <flags>
134 # @DESCRIPTION:
135 # Remove particular <flags> from {C,CPP,CXX,CCAS,F,FC,LD}FLAGS.  Accepts shell globs.
136 filter-flags() {
137         _filter-hardened "$@"
138         local v
139         for v in $(all-flag-vars) ; do
140                 _filter-var ${v} "$@"
141         done
142         return 0
143 }
144
145 # @FUNCTION: filter-lfs-flags
146 # @DESCRIPTION:
147 # Remove flags that enable Large File Support.
148 filter-lfs-flags() {
149         [[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments"
150         # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html
151         # _LARGEFILE_SOURCE: enable support for new LFS funcs (ftello/etc...)
152         # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...)
153         # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t)
154         filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
155 }
156
157 # @FUNCTION: filter-ldflags
158 # @USAGE: <flags>
159 # @DESCRIPTION:
160 # Remove particular <flags> from LDFLAGS.  Accepts shell globs.
161 filter-ldflags() {
162         _filter-var LDFLAGS "$@"
163         return 0
164 }
165
166 # @FUNCTION: append-cppflags
167 # @USAGE: <flags>
168 # @DESCRIPTION:
169 # Add extra <flags> to the current CPPFLAGS.
170 append-cppflags() {
171         [[ $# -eq 0 ]] && return 0
172         export CPPFLAGS+=" $*"
173         return 0
174 }
175
176 # @FUNCTION: append-cflags
177 # @USAGE: <flags>
178 # @DESCRIPTION:
179 # Add extra <flags> to the current CFLAGS.  If a flag might not be supported
180 # with different compilers (or versions), then use test-flags-CC like so:
181 # @CODE
182 # append-cflags $(test-flags-CC -funky-flag)
183 # @CODE
184 append-cflags() {
185         [[ $# -eq 0 ]] && return 0
186         # Do not do automatic flag testing ourselves. #417047
187         export CFLAGS+=" $*"
188         return 0
189 }
190
191 # @FUNCTION: append-cxxflags
192 # @USAGE: <flags>
193 # @DESCRIPTION:
194 # Add extra <flags> to the current CXXFLAGS.  If a flag might not be supported
195 # with different compilers (or versions), then use test-flags-CXX like so:
196 # @CODE
197 # append-cxxflags $(test-flags-CXX -funky-flag)
198 # @CODE
199 append-cxxflags() {
200         [[ $# -eq 0 ]] && return 0
201         # Do not do automatic flag testing ourselves. #417047
202         export CXXFLAGS+=" $*"
203         return 0
204 }
205
206 # @FUNCTION: append-fflags
207 # @USAGE: <flags>
208 # @DESCRIPTION:
209 # Add extra <flags> to the current {F,FC}FLAGS.  If a flag might not be supported
210 # with different compilers (or versions), then use test-flags-F77 like so:
211 # @CODE
212 # append-fflags $(test-flags-F77 -funky-flag)
213 # @CODE
214 append-fflags() {
215         [[ $# -eq 0 ]] && return 0
216         # Do not do automatic flag testing ourselves. #417047
217         export FFLAGS+=" $*"
218         export FCFLAGS+=" $*"
219         return 0
220 }
221
222 # @FUNCTION: append-lfs-flags
223 # @DESCRIPTION:
224 # Add flags that enable Large File Support.
225 append-lfs-flags() {
226         [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments"
227         # see comments in filter-lfs-flags func for meaning of these
228         append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
229 }
230
231 # @FUNCTION: append-ldflags
232 # @USAGE: <flags>
233 # @DESCRIPTION:
234 # Add extra <flags> to the current LDFLAGS.
235 append-ldflags() {
236         [[ $# -eq 0 ]] && return 0
237         local flag
238         for flag in "$@"; do
239                 [[ ${flag} == -l* ]] && \
240                         eqawarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS"
241         done
242
243         export LDFLAGS="${LDFLAGS} $*"
244         return 0
245 }
246
247 # @FUNCTION: append-flags
248 # @USAGE: <flags>
249 # @DESCRIPTION:
250 # Add extra <flags> to your current {C,CXX,F,FC}FLAGS.
251 append-flags() {
252         [[ $# -eq 0 ]] && return 0
253         case " $* " in
254         *' '-[DIU]*) eqawarn 'please use append-cppflags for preprocessor flags' ;;
255         *' '-L*|\
256         *' '-Wl,*)  eqawarn 'please use append-ldflags for linker flags' ;;
257         esac
258         append-cflags "$@"
259         append-cxxflags "$@"
260         append-fflags "$@"
261         return 0
262 }
263
264 # @FUNCTION: replace-flags
265 # @USAGE: <old> <new>
266 # @DESCRIPTION:
267 # Replace the <old> flag with <new>.  Accepts shell globs for <old>.
268 replace-flags() {
269         [[ $# != 2 ]] && die "Usage: replace-flags <old flag> <new flag>"
270
271         local f var new
272         for var in $(all-flag-vars) ; do
273                 # Looping over the flags instead of using a global
274                 # substitution ensures that we're working with flag atoms.
275                 # Otherwise globs like -O* have the potential to wipe out the
276                 # list of flags.
277                 new=()
278                 for f in ${!var} ; do
279                         # Note this should work with globs like -O*
280                         [[ ${f} == ${1} ]] && f=${2}
281                         new+=( "${f}" )
282                 done
283                 export ${var}="${new[*]}"
284         done
285
286         return 0
287 }
288
289 # @FUNCTION: replace-cpu-flags
290 # @USAGE: <old> <new>
291 # @DESCRIPTION:
292 # Replace cpu flags (like -march/-mcpu/-mtune) that select the <old> cpu
293 # with flags that select the <new> cpu.  Accepts shell globs for <old>.
294 replace-cpu-flags() {
295         local newcpu="$#" ; newcpu="${!newcpu}"
296         while [ $# -gt 1 ] ; do
297                 # quote to make sure that no globbing is done (particularly on
298                 # ${oldcpu}) prior to calling replace-flags
299                 replace-flags "-march=${1}" "-march=${newcpu}"
300                 replace-flags "-mcpu=${1}" "-mcpu=${newcpu}"
301                 replace-flags "-mtune=${1}" "-mtune=${newcpu}"
302                 shift
303         done
304         return 0
305 }
306
307 _is_flagq() {
308         local x var="$1[*]"
309         for x in ${!var} ; do
310                 [[ ${x} == $2 ]] && return 0
311         done
312         return 1
313 }
314
315 # @FUNCTION: is-flagq
316 # @USAGE: <flag>
317 # @DESCRIPTION:
318 # Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false.  Accepts shell globs.
319 is-flagq() {
320         [[ -n $2 ]] && die "Usage: is-flag <flag>"
321
322         local var
323         for var in $(all-flag-vars) ; do
324                 _is_flagq ${var} "$1" && return 0
325         done
326         return 1
327 }
328
329 # @FUNCTION: is-flag
330 # @USAGE: <flag>
331 # @DESCRIPTION:
332 # Echo's "true" if flag is set in {C,CXX,F,FC}FLAGS.  Accepts shell globs.
333 is-flag() {
334         is-flagq "$@" && echo true
335 }
336
337 # @FUNCTION: is-ldflagq
338 # @USAGE: <flag>
339 # @DESCRIPTION:
340 # Returns shell true if <flag> is in LDFLAGS, else returns shell false.  Accepts shell globs.
341 is-ldflagq() {
342         [[ -n $2 ]] && die "Usage: is-ldflag <flag>"
343         _is_flagq LDFLAGS $1
344 }
345
346 # @FUNCTION: is-ldflag
347 # @USAGE: <flag>
348 # @DESCRIPTION:
349 # Echo's "true" if flag is set in LDFLAGS.  Accepts shell globs.
350 is-ldflag() {
351         is-ldflagq "$@" && echo true
352 }
353
354 # @FUNCTION: filter-mfpmath
355 # @USAGE: <math types>
356 # @DESCRIPTION:
357 # Remove specified math types from the fpmath flag.  For example, if the user
358 # has -mfpmath=sse,386, running `filter-mfpmath sse` will leave the user with
359 # -mfpmath=386.
360 filter-mfpmath() {
361         local orig_mfpmath new_math prune_math
362
363         # save the original -mfpmath flag
364         orig_mfpmath=$(get-flag -mfpmath)
365         # get the value of the current -mfpmath flag
366         new_math=$(get-flag mfpmath)
367         # convert "both" to something we can filter
368         new_math=${new_math/both/387,sse}
369         new_math=" ${new_math//[,+]/ } "
370         # figure out which math values are to be removed
371         prune_math=""
372         for prune_math in "$@" ; do
373                 new_math=${new_math/ ${prune_math} / }
374         done
375         new_math=$(echo ${new_math})
376         new_math=${new_math// /,}
377
378         if [[ -z ${new_math} ]] ; then
379                 # if we're removing all user specified math values are
380                 # slated for removal, then we just filter the flag
381                 filter-flags ${orig_mfpmath}
382         else
383                 # if we only want to filter some of the user specified
384                 # math values, then we replace the current flag
385                 replace-flags ${orig_mfpmath} -mfpmath=${new_math}
386         fi
387         return 0
388 }
389
390 # @FUNCTION: strip-flags
391 # @DESCRIPTION:
392 # Strip *FLAGS of everything except known good/safe flags.  This runs over all
393 # flags returned by all_flag_vars().
394 strip-flags() {
395         local x y var
396
397         local ALLOWED_FLAGS
398         setup-allowed-flags
399
400         set -f  # disable pathname expansion
401
402         for var in $(all-flag-vars) ; do
403                 local new=()
404
405                 for x in ${!var} ; do
406                         local flag=${x%%=*}
407                         for y in "${ALLOWED_FLAGS[@]}" ; do
408                                 if [[ -z ${flag%%${y}} ]] ; then
409                                         new+=( "${x}" )
410                                         break
411                                 fi
412                         done
413                 done
414
415                 # In case we filtered out all optimization flags fallback to -O2
416                 if _is_flagq ${var} "-O*" && ! _is_flagq new "-O*" ; then
417                         new+=( -O2 )
418                 fi
419
420                 if [[ ${!var} != "${new[*]}" ]] ; then
421                         einfo "strip-flags: ${var}: changed '${!var}' to '${new[*]}'"
422                 fi
423                 export ${var}="${new[*]}"
424         done
425
426         set +f  # re-enable pathname expansion
427
428         return 0
429 }
430
431 test-flag-PROG() {
432         local comp=$1
433         local lang=$2
434         shift 2
435
436         [[ -z ${comp} || -z $1 ]] && return 1
437
438         local cmdline=(
439                 $(tc-get${comp})
440                 # Clang will warn about unknown gcc flags but exit 0.
441                 # Need -Werror to force it to exit non-zero.
442                 -Werror
443                 # Use -c so we can test the assembler as well.
444                 -c -o /dev/null
445         )
446         if "${cmdline[@]}" -x${lang} - </dev/null &>/dev/null ; then
447                 cmdline+=( "$@" -x${lang} - )
448         else
449                 # XXX: what's the purpose of this? does it even work with
450                 # any compiler?
451                 cmdline+=( "$@" -c -o /dev/null /dev/null )
452         fi
453
454         if ! "${cmdline[@]}" </dev/null &>/dev/null; then
455                 # -Werror makes clang bail out on unused arguments as well;
456                 # try to add -Qunused-arguments to work-around that
457                 # other compilers don't support it but then, it's failure like
458                 # any other
459                 cmdline+=( -Qunused-arguments )
460                 "${cmdline[@]}" </dev/null &>/dev/null
461         fi
462 }
463
464 # @FUNCTION: test-flag-CC
465 # @USAGE: <flag>
466 # @DESCRIPTION:
467 # Returns shell true if <flag> is supported by the C compiler, else returns shell false.
468 test-flag-CC() { test-flag-PROG "CC" c "$@"; }
469
470 # @FUNCTION: test-flag-CXX
471 # @USAGE: <flag>
472 # @DESCRIPTION:
473 # Returns shell true if <flag> is supported by the C++ compiler, else returns shell false.
474 test-flag-CXX() { test-flag-PROG "CXX" c++ "$@"; }
475
476 # @FUNCTION: test-flag-F77
477 # @USAGE: <flag>
478 # @DESCRIPTION:
479 # Returns shell true if <flag> is supported by the Fortran 77 compiler, else returns shell false.
480 test-flag-F77() { test-flag-PROG "F77" f77 "$@"; }
481
482 # @FUNCTION: test-flag-FC
483 # @USAGE: <flag>
484 # @DESCRIPTION:
485 # Returns shell true if <flag> is supported by the Fortran 90 compiler, else returns shell false.
486 test-flag-FC() { test-flag-PROG "FC" f95 "$@"; }
487
488 test-flags-PROG() {
489         local comp=$1
490         local flags=()
491         local x
492
493         shift
494
495         [[ -z ${comp} ]] && return 1
496
497         while (( $# )); do
498                 case "$1" in
499                         --param)
500                                 if test-flag-${comp} "$1" "$2"; then
501                                         flags+=( "$1" "$2" )
502                                 fi
503                                 shift 2
504                                 ;;
505                         *)
506                                 if test-flag-${comp} "$1"; then
507                                         flags+=( "$1" )
508                                 fi
509                                 shift 1
510                                 ;;
511                 esac
512         done
513
514         echo "${flags[*]}"
515
516         # Just bail if we dont have any flags
517         [[ ${#flags[@]} -gt 0 ]]
518 }
519
520 # @FUNCTION: test-flags-CC
521 # @USAGE: <flags>
522 # @DESCRIPTION:
523 # Returns shell true if <flags> are supported by the C compiler, else returns shell false.
524 test-flags-CC() { test-flags-PROG "CC" "$@"; }
525
526 # @FUNCTION: test-flags-CXX
527 # @USAGE: <flags>
528 # @DESCRIPTION:
529 # Returns shell true if <flags> are supported by the C++ compiler, else returns shell false.
530 test-flags-CXX() { test-flags-PROG "CXX" "$@"; }
531
532 # @FUNCTION: test-flags-F77
533 # @USAGE: <flags>
534 # @DESCRIPTION:
535 # Returns shell true if <flags> are supported by the Fortran 77 compiler, else returns shell false.
536 test-flags-F77() { test-flags-PROG "F77" "$@"; }
537
538 # @FUNCTION: test-flags-FC
539 # @USAGE: <flags>
540 # @DESCRIPTION:
541 # Returns shell true if <flags> are supported by the Fortran 90 compiler, else returns shell false.
542 test-flags-FC() { test-flags-PROG "FC" "$@"; }
543
544 # @FUNCTION: test-flags
545 # @USAGE: <flags>
546 # @DESCRIPTION:
547 # Short-hand that should hopefully work for both C and C++ compiler, but
548 # its really only present due to the append-flags() abomination.
549 test-flags() { test-flags-CC "$@"; }
550
551 # @FUNCTION: test_version_info
552 # @USAGE: <version>
553 # @DESCRIPTION:
554 # Returns shell true if the current C compiler version matches <version>, else returns shell false.
555 # Accepts shell globs.
556 test_version_info() {
557         if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then
558                 return 0
559         else
560                 return 1
561         fi
562 }
563
564 # @FUNCTION: strip-unsupported-flags
565 # @DESCRIPTION:
566 # Strip {C,CXX,F,FC}FLAGS of any flags not supported by the active toolchain.
567 strip-unsupported-flags() {
568         export CFLAGS=$(test-flags-CC ${CFLAGS})
569         export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS})
570         export FFLAGS=$(test-flags-F77 ${FFLAGS})
571         export FCFLAGS=$(test-flags-FC ${FCFLAGS})
572         # note: this does not verify the linker flags but it is enough
573         # to strip invalid C flags which are much more likely, #621274
574         export LDFLAGS=$(test-flags-CC ${LDFLAGS})
575 }
576
577 # @FUNCTION: get-flag
578 # @USAGE: <flag>
579 # @DESCRIPTION:
580 # Find and echo the value for a particular flag.  Accepts shell globs.
581 get-flag() {
582         local f var findflag="$1"
583
584         # this code looks a little flaky but seems to work for
585         # everything we want ...
586         # for example, if CFLAGS="-march=i686":
587         # `get-flag -march` == "-march=i686"
588         # `get-flag march` == "i686"
589         for var in $(all-flag-vars) ; do
590                 for f in ${!var} ; do
591                         if [ "${f/${findflag}}" != "${f}" ] ; then
592                                 printf "%s\n" "${f/-${findflag}=}"
593                                 return 0
594                         fi
595                 done
596         done
597         return 1
598 }
599
600 has_m64() {
601         die "${FUNCNAME}: don't use this anymore"
602 }
603
604 has_m32() {
605         die "${FUNCNAME}: don't use this anymore"
606 }
607
608 # @FUNCTION: replace-sparc64-flags
609 # @DESCRIPTION:
610 # Sets mcpu to v8 and uses the original value as mtune if none specified.
611 replace-sparc64-flags() {
612         local SPARC64_CPUS="ultrasparc3 ultrasparc v9"
613
614         if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then
615                 for x in ${SPARC64_CPUS}; do
616                         CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}"
617                 done
618         else
619                 for x in ${SPARC64_CPUS}; do
620                         CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"
621                 done
622         fi
623
624         if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then
625                 for x in ${SPARC64_CPUS}; do
626                         CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}"
627                 done
628         else
629                 for x in ${SPARC64_CPUS}; do
630                         CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}"
631                 done
632         fi
633
634         export CFLAGS CXXFLAGS
635 }
636
637 # @FUNCTION: append-libs
638 # @USAGE: <libs>
639 # @DESCRIPTION:
640 # Add extra <libs> to the current LIBS. All arguments should be prefixed with
641 # either -l or -L.  For compatibility, if arguments are not prefixed as
642 # options, they are given a -l prefix automatically.
643 append-libs() {
644         [[ $# -eq 0 ]] && return 0
645         local flag
646         for flag in "$@"; do
647                 if [[ -z "${flag// }" ]]; then
648                         eqawarn "Appending an empty argument to LIBS is invalid! Skipping."
649                         continue
650                 fi
651                 case $flag in
652                         -[lL]*)
653                                 export LIBS="${LIBS} ${flag}"
654                                 ;;
655                         -*)
656                                 eqawarn "Appending non-library to LIBS (${flag}); Other linker flags should be passed via LDFLAGS"
657                                 export LIBS="${LIBS} ${flag}"
658                                 ;;
659                         *)
660                                 export LIBS="${LIBS} -l${flag}"
661                 esac
662         done
663
664         return 0
665 }
666
667 # @FUNCTION: raw-ldflags
668 # @USAGE: [flags]
669 # @DESCRIPTION:
670 # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results
671 # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed
672 # to gcc where it needs the '-Wl,'.
673 #
674 # If no flags are specified, then default to ${LDFLAGS}.
675 raw-ldflags() {
676         local x input="$@"
677         [[ -z ${input} ]] && input=${LDFLAGS}
678         set --
679         for x in ${input} ; do
680                 case ${x} in
681                 -Wl,*)
682                         x=${x#-Wl,}
683                         set -- "$@" ${x//,/ }
684                         ;;
685                 *)      # Assume it's a compiler driver flag, so throw it away #441808
686                         ;;
687                 esac
688         done
689         echo "$@"
690 }
691
692 # @FUNCTION: no-as-needed
693 # @RETURN: Flag to disable asneeded behavior for use with append-ldflags.
694 no-as-needed() {
695         case $($(tc-getLD) -v 2>&1 </dev/null) in
696                 *GNU*) # GNU ld
697                 echo "-Wl,--no-as-needed" ;;
698         esac
699 }
700
701 fi