| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.40 2004/03/12 11:21:15 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.165 2012/01/14 08:05:32 vapier Exp $ |
| 4 | # |
|
|
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | ECLASS=flag-o-matic |
5 | # @ECLASS: flag-o-matic.eclass |
| 8 | INHERITED="$INHERITED $ECLASS" |
6 | # @MAINTAINER: |
|
|
7 | # toolchain@gentoo.org |
|
|
8 | # @BLURB: common functions to manipulate and query toolchain flags |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # This eclass contains a suite of functions to help developers sanely |
|
|
11 | # and safely manage toolchain flags in their builds. |
| 9 | |
12 | |
| 10 | # |
13 | if [[ ${___ECLASS_ONCE_FLAG_O_MATIC} != "recur -_+^+_- spank" ]] ; then |
| 11 | #### filter-flags <flags> #### |
14 | ___ECLASS_ONCE_FLAG_O_MATIC="recur -_+^+_- spank" |
| 12 | # Remove particular flags from C[XX]FLAGS |
|
|
| 13 | # Matches only complete flags |
|
|
| 14 | # |
|
|
| 15 | #### append-flags <flags> #### |
|
|
| 16 | # Add extra flags to your current C[XX]FLAGS |
|
|
| 17 | # |
|
|
| 18 | #### replace-flags <orig.flag> <new.flag> ### |
|
|
| 19 | # Replace a flag by another one |
|
|
| 20 | # |
|
|
| 21 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
|
|
| 22 | # Replace march/mcpu flags that specify <old.cpus> |
|
|
| 23 | # with flags that specify <new.cpu> |
|
|
| 24 | # |
|
|
| 25 | #### is-flag <flag> #### |
|
|
| 26 | # Returns "true" if flag is set in C[XX]FLAGS |
|
|
| 27 | # Matches only complete a flag |
|
|
| 28 | # |
|
|
| 29 | #### strip-flags #### |
|
|
| 30 | # Strip C[XX]FLAGS of everything except known |
|
|
| 31 | # good options. |
|
|
| 32 | # |
|
|
| 33 | #### strip-unsupported-flags #### |
|
|
| 34 | # Strip C[XX]FLAGS of any flags not supported by |
|
|
| 35 | # installed version of gcc |
|
|
| 36 | # |
|
|
| 37 | #### get-flag <flag> #### |
|
|
| 38 | # Find and echo the value for a particular flag |
|
|
| 39 | # |
|
|
| 40 | #### replace-sparc64-flags #### |
|
|
| 41 | # Sets mcpu to v8 and uses the original value |
|
|
| 42 | # as mtune if none specified. |
|
|
| 43 | # |
|
|
| 44 | #### filter-mfpmath <math types> #### |
|
|
| 45 | # Remove specified math types from the fpmath specification |
|
|
| 46 | # If the user has -mfpmath=sse,386, running `filter-mfpmath sse` |
|
|
| 47 | # will leave the user with -mfpmath=386 |
|
|
| 48 | # |
|
|
| 49 | #### append-ldflags #### |
|
|
| 50 | # Add extra flags to your current LDFLAGS |
|
|
| 51 | # |
|
|
| 52 | #### etexec-flags #### |
|
|
| 53 | # hooked function for hardened-gcc that appends |
|
|
| 54 | # -yet_exec {C,CXX,LD}FLAGS when hardened-gcc is installed |
|
|
| 55 | # and a package is filtering -fPIC,-fpic, -fPIE, -fpie |
|
|
| 56 | # |
|
|
| 57 | #### fstack-flags #### |
|
|
| 58 | # hooked function for hardened-gcc that appends |
|
|
| 59 | # -yno_propolice to {C,CXX,LD}FLAGS when hardened-gcc is installed |
|
|
| 60 | # and a package is filtering -fstack-protector, -fstack-protector-all |
|
|
| 61 | # |
|
|
| 62 | |
15 | |
|
|
16 | inherit eutils toolchain-funcs multilib |
|
|
17 | |
| 63 | # C[XX]FLAGS that we allow in strip-flags |
18 | # {C,CXX,F,FC}FLAGS that we allow in strip-flags |
|
|
19 | # Note: shell globs and character lists are allowed |
| 64 | setup-allowed-flags() { |
20 | setup-allowed-flags() { |
| 65 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
21 | ALLOWED_FLAGS="-pipe" |
|
|
22 | ALLOWED_FLAGS+=" -O -O1 -O2 -Os -mcpu -march -mtune" |
|
|
23 | ALLOWED_FLAGS+=" -fstack-protector -fstack-protector-all" |
|
|
24 | ALLOWED_FLAGS+=" -fbounds-checking -fno-strict-overflow" |
|
|
25 | ALLOWED_FLAGS+=" -fno-PIE -fno-pie -fno-unit-at-a-time" |
|
|
26 | ALLOWED_FLAGS+=" -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
|
|
27 | ALLOWED_FLAGS+=" -fno-ident -fpermissive" |
|
|
28 | ALLOWED_FLAGS+=" -W* -w" |
|
|
29 | |
|
|
30 | # allow a bunch of flags that negate features / control ABI |
|
|
31 | ALLOWED_FLAGS+=" -fno-stack-protector -fno-stack-protector-all \ |
|
|
32 | -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow \ |
|
|
33 | -fno-omit-frame-pointer" |
|
|
34 | ALLOWED_FLAGS+=" -mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse \ |
|
|
35 | -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 \ |
|
|
36 | -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt \ |
|
|
37 | -mno-abm -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -mplt \ |
|
|
38 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
39 | -mieee -mieee-with-inexact -mschedule -mfloat-gprs -mspe -mno-spe \ |
|
|
40 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs -mflat -mno-flat \ |
|
|
41 | -mno-faster-structs -mfaster-structs -m32 -m64 -mx32 -mabi \ |
|
|
42 | -mlittle-endian -mbig-endian -EL -EB -fPIC -mlive-g0 -mcmodel \ |
|
|
43 | -mstack-bias -mno-stack-bias -msecure-plt -m*-toc -D* -U*" |
|
|
44 | |
|
|
45 | # 4.5 |
|
|
46 | ALLOWED_FLAGS+=" -mno-fma4 -mno-movbe -mno-xop -mno-lwp" |
|
|
47 | # 4.6 |
|
|
48 | ALLOWED_FLAGS+=" -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm" |
|
|
49 | |
|
|
50 | export ALLOWED_FLAGS |
|
|
51 | return 0 |
|
|
52 | } |
|
|
53 | |
|
|
54 | # inverted filters for hardened compiler. This is trying to unpick |
|
|
55 | # the hardened compiler defaults. |
|
|
56 | _filter-hardened() { |
|
|
57 | local f |
|
|
58 | for f in "$@" ; do |
| 66 | case "${ARCH}" in |
59 | case "${f}" in |
| 67 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
60 | # Ideally we should only concern ourselves with PIE flags, |
| 68 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
61 | # not -fPIC or -fpic, but too many places filter -fPIC without |
| 69 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
62 | # thinking about -fPIE. |
| 70 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
63 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
|
|
64 | gcc-specs-pie || continue |
|
|
65 | is-flagq -nopie || append-flags -nopie;; |
|
|
66 | -fstack-protector) |
|
|
67 | gcc-specs-ssp || continue |
|
|
68 | is-flagq -fno-stack-protector || append-flags $(test-flags -fno-stack-protector);; |
|
|
69 | -fstack-protector-all) |
|
|
70 | gcc-specs-ssp-to-all || continue |
|
|
71 | is-flagq -fno-stack-protector-all || append-flags $(test-flags -fno-stack-protector-all);; |
|
|
72 | -fno-strict-overflow) |
|
|
73 | gcc-specs-nostrict || continue |
|
|
74 | is-flagq -fstrict-overflow || append-flags $(test-flags -fstrict-overflow);; |
| 71 | esac |
75 | esac |
| 72 | |
76 | done |
| 73 | # C[XX]FLAGS that we are think is ok, but needs testing |
|
|
| 74 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
|
|
| 75 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
|
|
| 76 | return 0 |
|
|
| 77 | } |
77 | } |
| 78 | |
78 | |
|
|
79 | # Remove occurrences of strings from variable given in $1 |
|
|
80 | # Strings removed are matched as globs, so for example |
|
|
81 | # '-O*' would remove -O1, -O2 etc. |
|
|
82 | _filter-var() { |
|
|
83 | local f x VAR VAL |
|
|
84 | declare -a new |
|
|
85 | |
|
|
86 | VAR=$1 |
|
|
87 | shift |
|
|
88 | eval VAL=\${${VAR}} |
|
|
89 | for f in ${VAL}; do |
|
|
90 | for x in "$@"; do |
|
|
91 | # Note this should work with globs like -O* |
|
|
92 | [[ ${f} == ${x} ]] && continue 2 |
|
|
93 | done |
|
|
94 | eval new\[\${\#new\[@]}]=\${f} |
|
|
95 | done |
|
|
96 | eval export ${VAR}=\${new\[*]} |
|
|
97 | } |
|
|
98 | |
|
|
99 | # @FUNCTION: filter-flags |
|
|
100 | # @USAGE: <flags> |
|
|
101 | # @DESCRIPTION: |
|
|
102 | # Remove particular <flags> from {C,CPP,CXX,F,FC,LD}FLAGS. Accepts shell globs. |
| 79 | filter-flags() { |
103 | filter-flags() { |
| 80 | for x in "$@" ; do |
104 | _filter-hardened "$@" |
| 81 | case "${x}" in |
105 | local v |
| 82 | -fPIC|-fpic|-fPIE|-fpie|-pie) etexec-flags;; |
106 | for v in C CPP CXX F FC LD ; do |
| 83 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
107 | _filter-var ${v}FLAGS "$@" |
| 84 | *) ;; |
|
|
| 85 | esac |
|
|
| 86 | done |
108 | done |
| 87 | |
|
|
| 88 | # we do this fancy spacing stuff so as to not filter |
|
|
| 89 | # out part of a flag ... we want flag atoms ! :D |
|
|
| 90 | CFLAGS=" ${CFLAGS} " |
|
|
| 91 | CXXFLAGS=" ${CXXFLAGS} " |
|
|
| 92 | for x in "$@" ; do |
|
|
| 93 | CFLAGS="${CFLAGS// ${x} / }" |
|
|
| 94 | CXXFLAGS="${CXXFLAGS// ${x} / }" |
|
|
| 95 | done |
|
|
| 96 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
|
|
| 97 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
|
|
| 98 | return 0 |
109 | return 0 |
| 99 | } |
110 | } |
| 100 | |
111 | |
|
|
112 | # @FUNCTION: filter-lfs-flags |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Remove flags that enable Large File Support. |
| 101 | filter-lfs-flags() { |
115 | filter-lfs-flags() { |
|
|
116 | [[ $# -ne 0 ]] && die "filter-lfs-flags takes no arguments" |
|
|
117 | # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html |
|
|
118 | # _LARGEFILE_SOURCE: enable support for new LFS funcs (ftello/etc...) |
|
|
119 | # _LARGEFILE64_SOURCE: enable support for 64bit variants (off64_t/fseeko64/etc...) |
|
|
120 | # _FILE_OFFSET_BITS: default to 64bit variants (off_t is defined as off64_t) |
| 102 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
121 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 103 | } |
122 | } |
| 104 | |
123 | |
|
|
124 | # @FUNCTION: append-cppflags |
|
|
125 | # @USAGE: <flags> |
|
|
126 | # @DESCRIPTION: |
|
|
127 | # Add extra <flags> to the current CPPFLAGS. |
|
|
128 | append-cppflags() { |
|
|
129 | [[ $# -eq 0 ]] && return 0 |
|
|
130 | export CPPFLAGS="${CPPFLAGS} $*" |
|
|
131 | return 0 |
|
|
132 | } |
|
|
133 | |
|
|
134 | # @FUNCTION: append-cflags |
|
|
135 | # @USAGE: <flags> |
|
|
136 | # @DESCRIPTION: |
|
|
137 | # Add extra <flags> to the current CFLAGS. |
|
|
138 | append-cflags() { |
|
|
139 | [[ $# -eq 0 ]] && return 0 |
|
|
140 | export CFLAGS=$(test-flags-CC ${CFLAGS} "$@") |
|
|
141 | return 0 |
|
|
142 | } |
|
|
143 | |
|
|
144 | # @FUNCTION: append-cxxflags |
|
|
145 | # @USAGE: <flags> |
|
|
146 | # @DESCRIPTION: |
|
|
147 | # Add extra <flags> to the current CXXFLAGS. |
|
|
148 | append-cxxflags() { |
|
|
149 | [[ $# -eq 0 ]] && return 0 |
|
|
150 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS} "$@") |
|
|
151 | return 0 |
|
|
152 | } |
|
|
153 | |
|
|
154 | # @FUNCTION: append-fflags |
|
|
155 | # @USAGE: <flags> |
|
|
156 | # @DESCRIPTION: |
|
|
157 | # Add extra <flags> to the current {F,FC}FLAGS. |
|
|
158 | append-fflags() { |
|
|
159 | [[ $# -eq 0 ]] && return 0 |
|
|
160 | export FFLAGS=$(test-flags-F77 ${FFLAGS} "$@") |
|
|
161 | export FCFLAGS=$(test-flags-FC ${FCFLAGS} "$@") |
|
|
162 | return 0 |
|
|
163 | } |
|
|
164 | |
|
|
165 | # @FUNCTION: append-lfs-flags |
|
|
166 | # @DESCRIPTION: |
|
|
167 | # Add flags that enable Large File Support. |
|
|
168 | append-lfs-flags() { |
|
|
169 | [[ $# -ne 0 ]] && die "append-lfs-flags takes no arguments" |
|
|
170 | # see comments in filter-lfs-flags func for meaning of these |
|
|
171 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
172 | } |
|
|
173 | |
|
|
174 | # @FUNCTION: append-flags |
|
|
175 | # @USAGE: <flags> |
|
|
176 | # @DESCRIPTION: |
|
|
177 | # Add extra <flags> to your current {C,CXX,F,FC}FLAGS. |
| 105 | append-flags() { |
178 | append-flags() { |
| 106 | export CFLAGS="${CFLAGS} $@" |
179 | [[ $# -eq 0 ]] && return 0 |
| 107 | export CXXFLAGS="${CXXFLAGS} $@" |
180 | append-cflags "$@" |
| 108 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
181 | append-cxxflags "$@" |
|
|
182 | append-fflags "$@" |
| 109 | return 0 |
183 | return 0 |
| 110 | } |
184 | } |
| 111 | |
185 | |
|
|
186 | # @FUNCTION: replace-flags |
|
|
187 | # @USAGE: <old> <new> |
|
|
188 | # @DESCRIPTION: |
|
|
189 | # Replace the <old> flag with <new>. Accepts shell globs for <old>. |
| 112 | replace-flags() { |
190 | replace-flags() { |
| 113 | # we do this fancy spacing stuff so as to not filter |
191 | [[ $# != 2 ]] \ |
| 114 | # out part of a flag ... we want flag atoms ! :D |
192 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
| 115 | CFLAGS=" ${CFLAGS} " |
193 | && die "replace-flags takes 2 arguments, not $#" |
| 116 | CXXFLAGS=" ${CXXFLAGS} " |
|
|
| 117 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
|
|
| 118 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
|
|
| 119 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
|
|
| 120 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
|
|
| 121 | return 0 |
|
|
| 122 | } |
|
|
| 123 | |
194 | |
|
|
195 | local f fset |
|
|
196 | declare -a new_CFLAGS new_CXXFLAGS new_FFLAGS new_FCFLAGS |
|
|
197 | |
|
|
198 | for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do |
|
|
199 | # Looping over the flags instead of using a global |
|
|
200 | # substitution ensures that we're working with flag atoms. |
|
|
201 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
202 | # list of flags. |
|
|
203 | for f in ${!fset}; do |
|
|
204 | # Note this should work with globs like -O* |
|
|
205 | [[ ${f} == ${1} ]] && f=${2} |
|
|
206 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
207 | done |
|
|
208 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
209 | done |
|
|
210 | |
|
|
211 | return 0 |
|
|
212 | } |
|
|
213 | |
|
|
214 | # @FUNCTION: replace-cpu-flags |
|
|
215 | # @USAGE: <old> <new> |
|
|
216 | # @DESCRIPTION: |
|
|
217 | # Replace cpu flags (like -march/-mcpu/-mtune) that select the <old> cpu |
|
|
218 | # with flags that select the <new> cpu. Accepts shell globs for <old>. |
| 124 | replace-cpu-flags() { |
219 | replace-cpu-flags() { |
| 125 | local newcpu="$1" ; shift |
220 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 126 | local oldcpu="" |
221 | while [ $# -gt 1 ] ; do |
| 127 | for oldcpu in "$@" ; do |
222 | # quote to make sure that no globbing is done (particularly on |
|
|
223 | # ${oldcpu}) prior to calling replace-flags |
| 128 | replace-flags -march=${oldcpu} -march=${newcpu} |
224 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 129 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
225 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
| 130 | replace-flags -mtune=${oldcpu} -mtune=${newcpu} |
226 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
227 | shift |
| 131 | done |
228 | done |
|
|
229 | return 0 |
|
|
230 | } |
|
|
231 | |
|
|
232 | _is_flagq() { |
|
|
233 | local x |
|
|
234 | for x in ${!1} ; do |
|
|
235 | [[ ${x} == $2 ]] && return 0 |
|
|
236 | done |
| 132 | return 0 |
237 | return 1 |
| 133 | } |
238 | } |
| 134 | |
239 | |
|
|
240 | # @FUNCTION: is-flagq |
|
|
241 | # @USAGE: <flag> |
|
|
242 | # @DESCRIPTION: |
|
|
243 | # Returns shell true if <flag> is in {C,CXX,F,FC}FLAGS, else returns shell false. Accepts shell globs. |
|
|
244 | is-flagq() { |
|
|
245 | [[ -n $2 ]] && die "Usage: is-flag <flag>" |
|
|
246 | _is_flagq CFLAGS $1 || _is_flagq CXXFLAGS $1 || _is_flagq FFLAGS $1 || _is_flagq FCFLAGS $1 |
|
|
247 | } |
|
|
248 | |
|
|
249 | # @FUNCTION: is-flag |
|
|
250 | # @USAGE: <flag> |
|
|
251 | # @DESCRIPTION: |
|
|
252 | # Echo's "true" if flag is set in {C,CXX,F,FC}FLAGS. Accepts shell globs. |
| 135 | is-flag() { |
253 | is-flag() { |
| 136 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
254 | is-flagq "$@" && echo true |
| 137 | if [ "${x}" == "$1" ] ; then |
|
|
| 138 | echo true |
|
|
| 139 | return 0 |
|
|
| 140 | fi |
|
|
| 141 | done |
|
|
| 142 | return 1 |
|
|
| 143 | } |
255 | } |
| 144 | |
256 | |
|
|
257 | # @FUNCTION: is-ldflagq |
|
|
258 | # @USAGE: <flag> |
|
|
259 | # @DESCRIPTION: |
|
|
260 | # Returns shell true if <flag> is in LDFLAGS, else returns shell false. Accepts shell globs. |
|
|
261 | is-ldflagq() { |
|
|
262 | [[ -n $2 ]] && die "Usage: is-ldflag <flag>" |
|
|
263 | _is_flagq LDFLAGS $1 |
|
|
264 | } |
|
|
265 | |
|
|
266 | # @FUNCTION: is-ldflag |
|
|
267 | # @USAGE: <flag> |
|
|
268 | # @DESCRIPTION: |
|
|
269 | # Echo's "true" if flag is set in LDFLAGS. Accepts shell globs. |
|
|
270 | is-ldflag() { |
|
|
271 | is-ldflagq "$@" && echo true |
|
|
272 | } |
|
|
273 | |
|
|
274 | # @FUNCTION: filter-mfpmath |
|
|
275 | # @USAGE: <math types> |
|
|
276 | # @DESCRIPTION: |
|
|
277 | # Remove specified math types from the fpmath flag. For example, if the user |
|
|
278 | # has -mfpmath=sse,386, running `filter-mfpmath sse` will leave the user with |
|
|
279 | # -mfpmath=386. |
| 145 | filter-mfpmath() { |
280 | filter-mfpmath() { |
|
|
281 | local orig_mfpmath new_math prune_math |
|
|
282 | |
| 146 | # save the original -mfpmath flag |
283 | # save the original -mfpmath flag |
| 147 | local orig_mfpmath="`get-flag -mfpmath`" |
284 | orig_mfpmath=$(get-flag -mfpmath) |
| 148 | # get the value of the current -mfpmath flag |
285 | # get the value of the current -mfpmath flag |
| 149 | local new_math=" `get-flag mfpmath | tr , ' '` " |
286 | new_math=$(get-flag mfpmath) |
|
|
287 | new_math=" ${new_math//,/ } " |
| 150 | # figure out which math values are to be removed |
288 | # figure out which math values are to be removed |
| 151 | local prune_math="" |
289 | prune_math="" |
| 152 | for prune_math in "$@" ; do |
290 | for prune_math in "$@" ; do |
| 153 | new_math="${new_math/ ${prune_math} / }" |
291 | new_math=${new_math/ ${prune_math} / } |
| 154 | done |
292 | done |
| 155 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
293 | new_math=$(echo ${new_math}) |
|
|
294 | new_math=${new_math// /,} |
| 156 | |
295 | |
| 157 | if [ -z "${new_math}" ] ; then |
296 | if [[ -z ${new_math} ]] ; then |
| 158 | # if we're removing all user specified math values are |
297 | # if we're removing all user specified math values are |
| 159 | # slated for removal, then we just filter the flag |
298 | # slated for removal, then we just filter the flag |
| 160 | filter-flags ${orig_mfpmath} |
299 | filter-flags ${orig_mfpmath} |
| 161 | else |
300 | else |
| 162 | # if we only want to filter some of the user specified |
301 | # if we only want to filter some of the user specified |
| … | |
… | |
| 164 | replace-flags ${orig_mfpmath} -mfpmath=${new_math} |
303 | replace-flags ${orig_mfpmath} -mfpmath=${new_math} |
| 165 | fi |
304 | fi |
| 166 | return 0 |
305 | return 0 |
| 167 | } |
306 | } |
| 168 | |
307 | |
|
|
308 | # @FUNCTION: strip-flags |
|
|
309 | # @DESCRIPTION: |
|
|
310 | # Strip C[XX]FLAGS of everything except known good/safe flags. |
| 169 | strip-flags() { |
311 | strip-flags() { |
|
|
312 | local x y flag NEW_CFLAGS NEW_CXXFLAGS NEW_FFLAGS NEW_FCFLAGS |
|
|
313 | |
| 170 | setup-allowed-flags |
314 | setup-allowed-flags |
| 171 | |
315 | |
| 172 | local NEW_CFLAGS="" |
316 | local NEW_CFLAGS="" |
| 173 | local NEW_CXXFLAGS="" |
317 | local NEW_CXXFLAGS="" |
|
|
318 | local NEW_FFLAGS="" |
|
|
319 | local NEW_FCFLAGS="" |
| 174 | |
320 | |
| 175 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
321 | set -f # disable pathname expansion |
| 176 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
|
|
| 177 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
|
|
| 178 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
|
|
| 179 | fi |
|
|
| 180 | |
322 | |
| 181 | set -f |
|
|
| 182 | |
|
|
| 183 | for x in ${CFLAGS} |
323 | for x in ${CFLAGS}; do |
| 184 | do |
|
|
| 185 | for y in ${ALLOWED_FLAGS} |
324 | for y in ${ALLOWED_FLAGS}; do |
| 186 | do |
|
|
| 187 | flag=${x%%=*} |
325 | flag=${x%%=*} |
| 188 | if [ "${flag%%${y}}" = "" ] |
326 | if [ "${flag%%${y}}" = "" ] ; then |
| 189 | then |
|
|
| 190 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
327 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 191 | break |
328 | break |
| 192 | fi |
329 | fi |
| 193 | done |
330 | done |
| 194 | done |
331 | done |
| 195 | |
332 | |
| 196 | for x in ${CXXFLAGS} |
333 | for x in ${CXXFLAGS}; do |
| 197 | do |
|
|
| 198 | for y in ${ALLOWED_FLAGS} |
334 | for y in ${ALLOWED_FLAGS}; do |
| 199 | do |
|
|
| 200 | flag=${x%%=*} |
335 | flag=${x%%=*} |
| 201 | if [ "${flag%%${y}}" = "" ] |
336 | if [ "${flag%%${y}}" = "" ] ; then |
| 202 | then |
|
|
| 203 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
337 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 204 | break |
338 | break |
| 205 | fi |
339 | fi |
| 206 | done |
340 | done |
| 207 | done |
341 | done |
| 208 | |
342 | |
|
|
343 | for x in ${FFLAGS}; do |
|
|
344 | for y in ${ALLOWED_FLAGS}; do |
|
|
345 | flag=${x%%=*} |
|
|
346 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
347 | NEW_FFLAGS="${NEW_FFLAGS} ${x}" |
|
|
348 | break |
|
|
349 | fi |
|
|
350 | done |
|
|
351 | done |
|
|
352 | |
|
|
353 | for x in ${FCFLAGS}; do |
|
|
354 | for y in ${ALLOWED_FLAGS}; do |
|
|
355 | flag=${x%%=*} |
|
|
356 | if [ "${flag%%${y}}" = "" ] ; then |
|
|
357 | NEW_FCFLAGS="${NEW_FCFLAGS} ${x}" |
|
|
358 | break |
|
|
359 | fi |
|
|
360 | done |
|
|
361 | done |
|
|
362 | |
| 209 | # In case we filtered out all optimization flags fallback to -O2 |
363 | # In case we filtered out all optimization flags fallback to -O2 |
| 210 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
364 | if [ "${CFLAGS/-O}" != "${CFLAGS}" -a "${NEW_CFLAGS/-O}" = "${NEW_CFLAGS}" ]; then |
| 211 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
365 | NEW_CFLAGS="${NEW_CFLAGS} -O2" |
| 212 | fi |
366 | fi |
| 213 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
367 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
| 214 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
368 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
| 215 | fi |
369 | fi |
|
|
370 | if [ "${FFLAGS/-O}" != "${FFLAGS}" -a "${NEW_FFLAGS/-O}" = "${NEW_FFLAGS}" ]; then |
|
|
371 | NEW_FFLAGS="${NEW_FFLAGS} -O2" |
|
|
372 | fi |
|
|
373 | if [ "${FCFLAGS/-O}" != "${FCFLAGS}" -a "${NEW_FCFLAGS/-O}" = "${NEW_FCFLAGS}" ]; then |
|
|
374 | NEW_FCFLAGS="${NEW_FCFLAGS} -O2" |
|
|
375 | fi |
| 216 | |
376 | |
| 217 | set +f |
377 | set +f # re-enable pathname expansion |
| 218 | |
|
|
| 219 | [ `use debug` ] \ |
|
|
| 220 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
|
|
| 221 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
|
|
| 222 | |
378 | |
| 223 | export CFLAGS="${NEW_CFLAGS}" |
379 | export CFLAGS="${NEW_CFLAGS}" |
| 224 | export CXXFLAGS="${NEW_CXXFLAGS}" |
380 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
381 | export FFLAGS="${NEW_FFLAGS}" |
|
|
382 | export FCFLAGS="${NEW_FCFLAGS}" |
| 225 | return 0 |
383 | return 0 |
| 226 | } |
384 | } |
| 227 | |
385 | |
| 228 | test_flag() { |
386 | test-flag-PROG() { |
| 229 | if gcc -S -xc "$@" -o /dev/null /dev/null >/dev/null 2>&1; then |
387 | local comp=$1 |
| 230 | echo "$@" |
388 | local flags="$2" |
|
|
389 | |
|
|
390 | [[ -z ${comp} || -z ${flags} ]] && return 1 |
|
|
391 | |
|
|
392 | # use -c so we can test the assembler as well |
|
|
393 | local PROG=$(tc-get${comp}) |
|
|
394 | ${PROG} ${flags} -c -o /dev/null -xc /dev/null \ |
|
|
395 | > /dev/null 2>&1 |
|
|
396 | } |
|
|
397 | |
|
|
398 | # @FUNCTION: test-flag-CC |
|
|
399 | # @USAGE: <flag> |
|
|
400 | # @DESCRIPTION: |
|
|
401 | # Returns shell true if <flag> is supported by the C compiler, else returns shell false. |
|
|
402 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
|
|
403 | |
|
|
404 | # @FUNCTION: test-flag-CXX |
|
|
405 | # @USAGE: <flag> |
|
|
406 | # @DESCRIPTION: |
|
|
407 | # Returns shell true if <flag> is supported by the C++ compiler, else returns shell false. |
|
|
408 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
409 | |
|
|
410 | # @FUNCTION: test-flag-F77 |
|
|
411 | # @USAGE: <flag> |
|
|
412 | # @DESCRIPTION: |
|
|
413 | # Returns shell true if <flag> is supported by the Fortran 77 compiler, else returns shell false. |
|
|
414 | test-flag-F77() { test-flag-PROG "F77" "$1"; } |
|
|
415 | |
|
|
416 | # @FUNCTION: test-flag-FC |
|
|
417 | # @USAGE: <flag> |
|
|
418 | # @DESCRIPTION: |
|
|
419 | # Returns shell true if <flag> is supported by the Fortran 90 compiler, else returns shell false. |
|
|
420 | test-flag-FC() { test-flag-PROG "FC" "$1"; } |
|
|
421 | |
|
|
422 | test-flags-PROG() { |
|
|
423 | local comp=$1 |
|
|
424 | local flags |
|
|
425 | local x |
|
|
426 | |
|
|
427 | shift |
|
|
428 | |
|
|
429 | [[ -z ${comp} ]] && return 1 |
|
|
430 | |
|
|
431 | for x in "$@" ; do |
|
|
432 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
|
|
433 | done |
|
|
434 | |
|
|
435 | echo "${flags}" |
|
|
436 | |
|
|
437 | # Just bail if we dont have any flags |
|
|
438 | [[ -n ${flags} ]] |
|
|
439 | } |
|
|
440 | |
|
|
441 | # @FUNCTION: test-flags-CC |
|
|
442 | # @USAGE: <flags> |
|
|
443 | # @DESCRIPTION: |
|
|
444 | # Returns shell true if <flags> are supported by the C compiler, else returns shell false. |
|
|
445 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
|
|
446 | |
|
|
447 | # @FUNCTION: test-flags-CXX |
|
|
448 | # @USAGE: <flags> |
|
|
449 | # @DESCRIPTION: |
|
|
450 | # Returns shell true if <flags> are supported by the C++ compiler, else returns shell false. |
|
|
451 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
|
|
452 | |
|
|
453 | # @FUNCTION: test-flags-F77 |
|
|
454 | # @USAGE: <flags> |
|
|
455 | # @DESCRIPTION: |
|
|
456 | # Returns shell true if <flags> are supported by the Fortran 77 compiler, else returns shell false. |
|
|
457 | test-flags-F77() { test-flags-PROG "F77" "$@"; } |
|
|
458 | |
|
|
459 | # @FUNCTION: test-flags-FC |
|
|
460 | # @USAGE: <flags> |
|
|
461 | # @DESCRIPTION: |
|
|
462 | # Returns shell true if <flags> are supported by the Fortran 90 compiler, else returns shell false. |
|
|
463 | test-flags-FC() { test-flags-PROG "FC" "$@"; } |
|
|
464 | |
|
|
465 | # @FUNCTION: test-flags |
|
|
466 | # @USAGE: <flags> |
|
|
467 | # @DESCRIPTION: |
|
|
468 | # Short-hand that should hopefully work for both C and C++ compiler, but |
|
|
469 | # its really only present due to the append-flags() abomination. |
|
|
470 | test-flags() { test-flags-CC "$@"; } |
|
|
471 | |
|
|
472 | # @FUNCTION: test_version_info |
|
|
473 | # @USAGE: <version> |
|
|
474 | # @DESCRIPTION: |
|
|
475 | # Returns shell true if the current C compiler version matches <version>, else returns shell false. |
|
|
476 | # Accepts shell globs. |
|
|
477 | test_version_info() { |
|
|
478 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 231 | return 0 |
479 | return 0 |
| 232 | fi |
480 | else |
| 233 | return 1 |
481 | return 1 |
|
|
482 | fi |
| 234 | } |
483 | } |
| 235 | |
484 | |
|
|
485 | # @FUNCTION: strip-unsupported-flags |
|
|
486 | # @DESCRIPTION: |
|
|
487 | # Strip {C,CXX,F,FC}FLAGS of any flags not supported by the active toolchain. |
| 236 | strip-unsupported-flags() { |
488 | strip-unsupported-flags() { |
| 237 | for x in ${CFLAGS} ; do |
489 | export CFLAGS=$(test-flags-CC ${CFLAGS}) |
| 238 | NEW_CFLAGS=${NEW_CFLAGS}" ""`test_flag ${x}`" |
490 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS}) |
| 239 | done |
491 | export FFLAGS=$(test-flags-F77 ${FFLAGS}) |
| 240 | for x in ${CXXFLAGS} ; do |
492 | export FCFLAGS=$(test-flags-FC ${FCFLAGS}) |
| 241 | NEW_CXXFLAGS=${NEW_CXXFLAGS}" ""`test_flag ${x}`" |
|
|
| 242 | done |
|
|
| 243 | |
|
|
| 244 | export CFLAGS="${NEW_CFLAGS}" |
|
|
| 245 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
| 246 | } |
493 | } |
| 247 | |
494 | |
|
|
495 | # @FUNCTION: get-flag |
|
|
496 | # @USAGE: <flag> |
|
|
497 | # @DESCRIPTION: |
|
|
498 | # Find and echo the value for a particular flag. Accepts shell globs. |
| 248 | get-flag() { |
499 | get-flag() { |
|
|
500 | local f findflag="$1" |
|
|
501 | |
| 249 | # this code looks a little flaky but seems to work for |
502 | # this code looks a little flaky but seems to work for |
| 250 | # everything we want ... |
503 | # everything we want ... |
| 251 | # for example, if CFLAGS="-march=i686": |
504 | # for example, if CFLAGS="-march=i686": |
| 252 | # `get-flags -march` == "-march=i686" |
505 | # `get-flag -march` == "-march=i686" |
| 253 | # `get-flags march` == "i686" |
506 | # `get-flag march` == "i686" |
| 254 | local findflag="$1" |
|
|
| 255 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
507 | for f in ${CFLAGS} ${CXXFLAGS} ${FFLAGS} ${FCFLAGS} ; do |
| 256 | if [ "${f/${findflag}}" != "${f}" ] ; then |
508 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 257 | echo "${f/-${findflag}=}" |
509 | printf "%s\n" "${f/-${findflag}=}" |
| 258 | return 0 |
510 | return 0 |
| 259 | fi |
511 | fi |
| 260 | done |
512 | done |
| 261 | return 1 |
513 | return 1 |
| 262 | } |
514 | } |
| 263 | |
515 | |
|
|
516 | # @FUNCTION: has_m64 |
|
|
517 | # @DESCRIPTION: |
|
|
518 | # This doesn't test if the flag is accepted, it tests if the flag actually |
|
|
519 | # WORKS. Non-multilib gcc will take both -m32 and -m64. If the flag works |
|
|
520 | # return code is 0, else the return code is 1. |
|
|
521 | has_m64() { |
|
|
522 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
523 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
524 | # please dont replace this function with test_flag in some future |
|
|
525 | # clean-up! |
|
|
526 | |
|
|
527 | local temp="$(emktemp)" |
|
|
528 | echo "int main() { return(0); }" > "${temp}".c |
|
|
529 | MY_CC=$(tc-getCC) |
|
|
530 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
531 | local ret=$? |
|
|
532 | rm -f "${temp}".c |
|
|
533 | [[ ${ret} != 1 ]] && return 0 |
|
|
534 | return 1 |
|
|
535 | } |
|
|
536 | |
|
|
537 | # @FUNCTION: has_m32 |
|
|
538 | # @DESCRIPTION: |
|
|
539 | # This doesn't test if the flag is accepted, it tests if the flag actually |
|
|
540 | # WORKS. Non-mulilib gcc will take both -m32 and -64. If the flag works return |
|
|
541 | # code is 0, else return code is 1. |
|
|
542 | has_m32() { |
|
|
543 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
544 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
545 | # please dont replace this function with test_flag in some future |
|
|
546 | # clean-up! |
|
|
547 | |
|
|
548 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
549 | |
|
|
550 | local temp=$(emktemp) |
|
|
551 | echo "int main() { return(0); }" > "${temp}".c |
|
|
552 | MY_CC=$(tc-getCC) |
|
|
553 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
554 | local ret=$? |
|
|
555 | rm -f "${temp}".c |
|
|
556 | [[ ${ret} != 1 ]] && return 0 |
|
|
557 | return 1 |
|
|
558 | } |
|
|
559 | |
|
|
560 | # @FUNCTION: replace-sparc64-flags |
|
|
561 | # @DESCRIPTION: |
|
|
562 | # Sets mcpu to v8 and uses the original value as mtune if none specified. |
| 264 | replace-sparc64-flags() { |
563 | replace-sparc64-flags() { |
| 265 | local SPARC64_CPUS="ultrasparc v9" |
564 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 266 | |
565 | |
| 267 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
566 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 268 | then |
|
|
| 269 | for x in ${SPARC64_CPUS} |
567 | for x in ${SPARC64_CPUS}; do |
| 270 | do |
|
|
| 271 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
568 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 272 | done |
569 | done |
| 273 | else |
570 | else |
| 274 | for x in ${SPARC64_CPUS} |
571 | for x in ${SPARC64_CPUS}; do |
| 275 | do |
|
|
| 276 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
572 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 277 | done |
573 | done |
| 278 | fi |
574 | fi |
| 279 | |
575 | |
| 280 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ] |
576 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 281 | then |
|
|
| 282 | for x in ${SPARC64_CPUS} |
577 | for x in ${SPARC64_CPUS}; do |
| 283 | do |
|
|
| 284 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
578 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 285 | done |
579 | done |
| 286 | else |
580 | else |
| 287 | for x in ${SPARC64_CPUS} |
581 | for x in ${SPARC64_CPUS}; do |
| 288 | do |
|
|
| 289 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
582 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 290 | done |
583 | done |
| 291 | fi |
584 | fi |
| 292 | } |
|
|
| 293 | |
585 | |
|
|
586 | export CFLAGS CXXFLAGS |
|
|
587 | } |
|
|
588 | |
|
|
589 | # @FUNCTION: append-libs |
|
|
590 | # @USAGE: <libs> |
|
|
591 | # @DESCRIPTION: |
|
|
592 | # Add extra <libs> to the current LIBS. |
|
|
593 | append-libs() { |
|
|
594 | [[ $# -eq 0 ]] && return 0 |
|
|
595 | local flag |
|
|
596 | for flag in "$@"; do |
|
|
597 | [[ ${flag} == -l* ]] && flag=${flag#-l} |
|
|
598 | export LIBS="${LIBS} -l${flag}" |
|
|
599 | done |
|
|
600 | |
|
|
601 | return 0 |
|
|
602 | } |
|
|
603 | |
|
|
604 | # @FUNCTION: append-ldflags |
|
|
605 | # @USAGE: <flags> |
|
|
606 | # @DESCRIPTION: |
|
|
607 | # Add extra <flags> to the current LDFLAGS. |
| 294 | append-ldflags() { |
608 | append-ldflags() { |
|
|
609 | [[ $# -eq 0 ]] && return 0 |
|
|
610 | local flag |
|
|
611 | for flag in "$@"; do |
|
|
612 | [[ ${flag} == -l* ]] && \ |
|
|
613 | ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS" |
|
|
614 | done |
|
|
615 | |
| 295 | LDFLAGS="${LDFLAGS} $@" |
616 | export LDFLAGS="${LDFLAGS} $*" |
| 296 | return 0 |
617 | return 0 |
| 297 | } |
618 | } |
| 298 | |
619 | |
| 299 | etexec-flags() { |
620 | # @FUNCTION: filter-ldflags |
| 300 | has_version sys-devel/hardened-gcc |
621 | # @USAGE: <flags> |
| 301 | if [ $? == 0 ] ; then |
622 | # @DESCRIPTION: |
| 302 | if [ "`is-flag -yet_exec`" != "true" ]; then |
623 | # Remove particular <flags> from LDFLAGS. Accepts shell globs. |
| 303 | debug-print ">>> appending flags -yet_exec" |
624 | filter-ldflags() { |
| 304 | append-flags -yet_exec |
625 | _filter-var LDFLAGS "$@" |
| 305 | append-ldflags -yet_exec |
626 | return 0 |
| 306 | fi |
627 | } |
|
|
628 | |
|
|
629 | # @FUNCTION: raw-ldflags |
|
|
630 | # @USAGE: [flags] |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
|
|
633 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
|
|
634 | # to gcc where it needs the '-Wl,'. |
|
|
635 | # |
|
|
636 | # If no flags are specified, then default to ${LDFLAGS}. |
|
|
637 | raw-ldflags() { |
|
|
638 | local x input="$@" |
|
|
639 | [[ -z ${input} ]] && input=${LDFLAGS} |
|
|
640 | set -- |
|
|
641 | for x in ${input} ; do |
|
|
642 | x=${x#-Wl,} |
|
|
643 | set -- "$@" ${x//,/ } |
|
|
644 | done |
|
|
645 | echo "$@" |
|
|
646 | } |
|
|
647 | |
|
|
648 | # @FUNCTION: no-as-needed |
|
|
649 | # @RETURN: Flag to disable asneeded behavior for use with append-ldflags. |
|
|
650 | no-as-needed() { |
|
|
651 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
652 | *GNU*) # GNU ld |
|
|
653 | echo "-Wl,--no-as-needed" ;; |
|
|
654 | esac |
|
|
655 | } |
|
|
656 | |
| 307 | fi |
657 | fi |
| 308 | } |
|
|
| 309 | |
|
|
| 310 | fstack-flags() { |
|
|
| 311 | has_version sys-devel/hardened-gcc |
|
|
| 312 | if [ $? == 0 ] ; then |
|
|
| 313 | if [ "`is-flag -yno_propolice`" != "true" ]; then |
|
|
| 314 | debug-print ">>> appending flags -yno_propolice" |
|
|
| 315 | append-flags -yno_propolice |
|
|
| 316 | append-ldflags -yno_propolice |
|
|
| 317 | fi |
|
|
| 318 | fi |
|
|
| 319 | } |
|
|