| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2009 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.124 2008/07/03 05:30:54 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.138 2009/05/26 07:18:33 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" |
| 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-3dnow \ |
| 47 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
47 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
| 48 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
48 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
| 49 | -mieee -mieee-with-inexact -mschedule \ |
49 | -mieee -mieee-with-inexact -mschedule \ |
| 50 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
50 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
| 51 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
51 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
| 52 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
52 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
| 53 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
53 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
| 54 | -msecure-plt -D*" |
54 | -msecure-plt -m*-toc -D* -U*" |
| 55 | |
55 | |
| 56 | # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing |
56 | # {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 |
57 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 58 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
58 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
| 59 | return 0 |
59 | return 0 |
| … | |
… | |
| 71 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
71 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
| 72 | gcc-specs-pie || continue |
72 | gcc-specs-pie || continue |
| 73 | is-flagq -nopie || append-flags -nopie;; |
73 | is-flagq -nopie || append-flags -nopie;; |
| 74 | -fstack-protector) |
74 | -fstack-protector) |
| 75 | gcc-specs-ssp || continue |
75 | gcc-specs-ssp || continue |
| 76 | is-flagq -fno-stack-protector || append-flags -fno-stack-protector;; |
76 | is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);; |
| 77 | -fstack-protector-all) |
77 | -fstack-protector-all) |
| 78 | gcc-specs-ssp-to-all || continue |
78 | gcc-specs-ssp-to-all || continue |
| 79 | is-flagq -fno-stack-protector-all || append-flags -fno-stack-protector-all;; |
79 | is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);; |
|
|
80 | -fno-strict-overflow) |
|
|
81 | gcc-specs-nostrict || continue |
|
|
82 | is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);; |
| 80 | esac |
83 | esac |
| 81 | done |
84 | done |
| 82 | } |
85 | } |
| 83 | |
86 | |
| 84 | # Remove occurrences of strings from variable given in $1 |
87 | # Remove occurrences of strings from variable given in $1 |
| … | |
… | |
| 131 | [[ -z $* ]] && return 0 |
134 | [[ -z $* ]] && return 0 |
| 132 | export CPPFLAGS="${CPPFLAGS} $*" |
135 | export CPPFLAGS="${CPPFLAGS} $*" |
| 133 | return 0 |
136 | return 0 |
| 134 | } |
137 | } |
| 135 | |
138 | |
|
|
139 | # @FUNCTION: append-cflags |
|
|
140 | # @USAGE: <flags> |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Add extra <flags> to the current CFLAGS. |
|
|
143 | append-cflags() { |
|
|
144 | [[ -z $* ]] && return 0 |
|
|
145 | export CFLAGS="${CFLAGS} $*" |
|
|
146 | return 0 |
|
|
147 | } |
|
|
148 | |
|
|
149 | # @FUNCTION: append-cxxflags |
|
|
150 | # @USAGE: <flags> |
|
|
151 | # @DESCRIPTION: |
|
|
152 | # Add extra <flags> to the current CXXFLAGS. |
|
|
153 | append-cxxflags() { |
|
|
154 | [[ -z $* ]] && return 0 |
|
|
155 | export CXXFLAGS="${CXXFLAGS} $*" |
|
|
156 | return 0 |
|
|
157 | } |
|
|
158 | |
| 136 | # @FUNCTION: append-fflags |
159 | # @FUNCTION: append-fflags |
| 137 | # @USAGE: <flags> |
160 | # @USAGE: <flags> |
| 138 | # @DESCRIPTION: |
161 | # @DESCRIPTION: |
| 139 | # Add extra <flags> to the current {F,FC}FLAGS. |
162 | # Add extra <flags> to the current {F,FC}FLAGS. |
| 140 | append-fflags() { |
163 | append-fflags() { |
| … | |
… | |
| 156 | # @USAGE: <flags> |
179 | # @USAGE: <flags> |
| 157 | # @DESCRIPTION: |
180 | # @DESCRIPTION: |
| 158 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
181 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
| 159 | append-flags() { |
182 | append-flags() { |
| 160 | [[ -z $* ]] && return 0 |
183 | [[ -z $* ]] && return 0 |
| 161 | export CFLAGS="${CFLAGS} $*" |
184 | append-cflags "$@" |
| 162 | export CXXFLAGS="${CXXFLAGS} $*" |
185 | append-cxxflags "$@" |
| 163 | export FFLAGS="${FFLAGS} $*" |
186 | append-fflags "$@" |
| 164 | export FCFLAGS="${FCFLAGS} $*" |
|
|
| 165 | return 0 |
187 | return 0 |
| 166 | } |
188 | } |
| 167 | |
189 | |
| 168 | # @FUNCTION: replace-flags |
190 | # @FUNCTION: replace-flags |
| 169 | # @USAGE: <old> <new> |
191 | # @USAGE: <old> <new> |
| … | |
… | |
| 173 | [[ $# != 2 ]] \ |
195 | [[ $# != 2 ]] \ |
| 174 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
196 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
| 175 | && die "replace-flags takes 2 arguments, not $#" |
197 | && die "replace-flags takes 2 arguments, not $#" |
| 176 | |
198 | |
| 177 | local f fset |
199 | local f fset |
| 178 | declare -a new_CFLAGS new_CXXFLAGS |
200 | declare -a new_CFLAGS new_CXXFLAGS new_FFLAGS new_FCFLAGS |
| 179 | |
201 | |
| 180 | for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do |
202 | for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do |
| 181 | # Looping over the flags instead of using a global |
203 | # Looping over the flags instead of using a global |
| 182 | # substitution ensures that we're working with flag atoms. |
204 | # substitution ensures that we're working with flag atoms. |
| 183 | # Otherwise globs like -O* have the potential to wipe out the |
205 | # Otherwise globs like -O* have the potential to wipe out the |
| … | |
… | |
| 553 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
575 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
| 554 | |
576 | |
| 555 | # note; this matches only -fstack-protector-all |
577 | # note; this matches only -fstack-protector-all |
| 556 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
578 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
| 557 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
579 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
| 558 | gcc-specs-ssp-all |
580 | gcc-specs-ssp-to-all |
| 559 | } |
581 | } |
| 560 | |
582 | |
| 561 | # @FUNCTION: has_ssp |
583 | # @FUNCTION: has_ssp |
| 562 | # @DESCRIPTION: |
584 | # @DESCRIPTION: |
| 563 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
585 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
| … | |
… | |
| 689 | # @FUNCTION: bindnow-flags |
711 | # @FUNCTION: bindnow-flags |
| 690 | # @RETURN: Returns the flags to enable "now" binding in the current selected linker. |
712 | # @RETURN: Returns the flags to enable "now" binding in the current selected linker. |
| 691 | # @DESCRIPTION: |
713 | # @DESCRIPTION: |
| 692 | # DEPRECATED - Gets the flags needed for "NOW" binding |
714 | # DEPRECATED - Gets the flags needed for "NOW" binding |
| 693 | bindnow-flags() { |
715 | bindnow-flags() { |
| 694 | ewarn "QA: stop using the bindnow-flags function ... simply drop it from your ebuild" >&2 |
716 | ewarn "QA: stop using the bindnow-flags function ... simply drop it from your ebuild" |
| 695 | |
|
|
| 696 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
| 697 | *GNU* | *'with BFD'*) # GNU ld |
|
|
| 698 | echo "-Wl,-z,now" ;; |
|
|
| 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 |
|
|
| 709 | } |
717 | } |
| 710 | |
718 | |
| 711 | |
719 | |
| 712 | # Some tests for when we screw with things and want to make |
720 | # Some tests for when we screw with things and want to make |
| 713 | # sure we didn't break anything |
721 | # sure we didn't break anything |