| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2007 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.37 2004/02/21 07:19:29 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.118 2007/03/24 07:07:18 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
5 | # Maintainer: toolchain@gentoo.org |
| 6 | |
6 | |
| 7 | ECLASS=flag-o-matic |
7 | # need access to emktemp() |
| 8 | INHERITED="$INHERITED $ECLASS" |
8 | inherit eutils toolchain-funcs multilib |
| 9 | |
9 | |
| 10 | # |
10 | # |
| 11 | #### filter-flags <flags> #### |
11 | #### filter-flags <flags> #### |
| 12 | # Remove particular flags from C[XX]FLAGS |
12 | # Remove particular flags from C[XX]FLAGS |
| 13 | # Matches only complete flags |
13 | # Matches only complete flags |
| … | |
… | |
| 16 | # Add extra flags to your current C[XX]FLAGS |
16 | # Add extra flags to your current C[XX]FLAGS |
| 17 | # |
17 | # |
| 18 | #### replace-flags <orig.flag> <new.flag> ### |
18 | #### replace-flags <orig.flag> <new.flag> ### |
| 19 | # Replace a flag by another one |
19 | # Replace a flag by another one |
| 20 | # |
20 | # |
| 21 | #### replace-cpu-flags <new.cpu> <old.cpus> ### |
21 | #### replace-cpu-flags <old.cpus> <new.cpu> ### |
| 22 | # Replace march/mcpu flags that specify <old.cpus> |
22 | # Replace march/mcpu flags that specify <old.cpus> |
| 23 | # with flags that specify <new.cpu> |
23 | # with flags that specify <new.cpu> |
| 24 | # |
24 | # |
| 25 | #### is-flag <flag> #### |
25 | #### is-flag[q] <flag> #### |
| 26 | # Returns "true" if flag is set in C[XX]FLAGS |
26 | # Returns "true" if flag is set in C[XX]FLAGS |
| 27 | # Matches only complete a flag |
27 | # Matches only complete a flag |
|
|
28 | # q version sets return code but doesn't echo |
|
|
29 | # |
|
|
30 | #### is-ldflag[q] <flag> #### |
|
|
31 | # Returns "true" if flag is set in LDFLAGS |
|
|
32 | # Matches only complete a flag |
|
|
33 | # q version sets return code but doesn't echo |
| 28 | # |
34 | # |
| 29 | #### strip-flags #### |
35 | #### strip-flags #### |
| 30 | # Strip C[XX]FLAGS of everything except known |
36 | # Strip C[XX]FLAGS of everything except known |
| 31 | # good options. |
37 | # good options. |
| 32 | # |
38 | # |
| … | |
… | |
| 47 | # will leave the user with -mfpmath=386 |
53 | # will leave the user with -mfpmath=386 |
| 48 | # |
54 | # |
| 49 | #### append-ldflags #### |
55 | #### append-ldflags #### |
| 50 | # Add extra flags to your current LDFLAGS |
56 | # Add extra flags to your current LDFLAGS |
| 51 | # |
57 | # |
| 52 | #### etexec-flags #### |
58 | #### filter-ldflags <flags> #### |
| 53 | # hooked function for hardened-gcc that appends |
59 | # Remove particular flags from LDFLAGS |
| 54 | # -yet_exec {C,CXX,LD}FLAGS when hardened-gcc is installed |
60 | # Matches only complete flags |
| 55 | # and a package is filtering -fPIC,-fpic, -fPIE, -fpie |
|
|
| 56 | # |
61 | # |
| 57 | #### fstack-flags #### |
62 | #### bindnow-flags #### |
| 58 | # hooked function for hardened-gcc that appends |
63 | # Returns the flags to enable "now" binding in the current selected linker. |
| 59 | # -yno_propolice to {C,CXX,LD}FLAGS when hardened-gcc is installed |
64 | # |
| 60 | # and a package is filtering -fstack-protector, -fstack-protector-all |
65 | ################ DEPRECATED functions ################ |
|
|
66 | # The following are still present to avoid breaking existing |
|
|
67 | # code more than necessary; however they are deprecated. Please |
|
|
68 | # use gcc-specs-* from toolchain-funcs.eclass instead, if you |
|
|
69 | # need to know which hardened techs are active in the compiler. |
|
|
70 | # See bug #100974 |
|
|
71 | # |
|
|
72 | #### has_hardened #### |
|
|
73 | # Returns true if the compiler has 'Hardened' in its version string, |
|
|
74 | # (note; switched-spec vanilla compilers satisfy this condition) or |
|
|
75 | # the specs file name contains 'hardened'. |
|
|
76 | # |
|
|
77 | #### has_pie #### |
|
|
78 | # Returns true if the compiler by default or with current CFLAGS |
|
|
79 | # builds position-independent code. |
|
|
80 | # |
|
|
81 | #### has_pic #### |
|
|
82 | # Returns true if the compiler by default or with current CFLAGS |
|
|
83 | # builds position-independent code. |
|
|
84 | # |
|
|
85 | #### has_ssp_all #### |
|
|
86 | # Returns true if the compiler by default or with current CFLAGS |
|
|
87 | # generates stack smash protections for all functions |
|
|
88 | # |
|
|
89 | #### has_ssp #### |
|
|
90 | # Returns true if the compiler by default or with current CFLAGS |
|
|
91 | # generates stack smash protections for most vulnerable functions |
| 61 | # |
92 | # |
| 62 | |
93 | |
| 63 | # C[XX]FLAGS that we allow in strip-flags |
94 | # C[XX]FLAGS that we allow in strip-flags |
|
|
95 | # Note: shell globs and character lists are allowed |
| 64 | setup-allowed-flags() { |
96 | setup-allowed-flags() { |
| 65 | export ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" |
97 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 66 | case "${ARCH}" in |
98 | export ALLOWED_FLAGS="-pipe" |
| 67 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi" ;; |
99 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 68 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
100 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
| 69 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
101 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
| 70 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
102 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-PIE -fno-pie -fno-unit-at-a-time" |
| 71 | esac |
103 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+" |
|
|
104 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-ident" |
|
|
105 | fi |
|
|
106 | # allow a bunch of flags that negate features / control ABI |
|
|
107 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
|
|
108 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
|
|
109 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
|
|
110 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
|
|
111 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
112 | -mieee -mieee-with-inexact -mschedule \ |
|
|
113 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
|
|
114 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
|
|
115 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
|
|
116 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ |
|
|
117 | -msecure-plt -D*" |
| 72 | |
118 | |
| 73 | # C[XX]FLAGS that we are think is ok, but needs testing |
119 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 74 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
120 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 75 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
121 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |
| 76 | return 0 |
122 | return 0 |
|
|
123 | } |
|
|
124 | |
|
|
125 | # inverted filters for hardened compiler. This is trying to unpick |
|
|
126 | # the hardened compiler defaults. |
|
|
127 | _filter-hardened() { |
|
|
128 | local f |
|
|
129 | for f in "$@" ; do |
|
|
130 | case "${f}" in |
|
|
131 | # Ideally we should only concern ourselves with PIE flags, |
|
|
132 | # not -fPIC or -fpic, but too many places filter -fPIC without |
|
|
133 | # thinking about -fPIE. |
|
|
134 | -fPIC|-fpic|-fPIE|-fpie|-Wl,pie|-pie) |
|
|
135 | gcc-specs-pie || continue |
|
|
136 | is-flagq -nopie || append-flags -nopie;; |
|
|
137 | -fstack-protector) |
|
|
138 | gcc-specs-ssp || continue |
|
|
139 | is-flagq -fno-stack-protector || append-flags -fno-stack-protector;; |
|
|
140 | -fstack-protector-all) |
|
|
141 | gcc-specs-ssp-to-all || continue |
|
|
142 | is-flagq -fno-stack-protector-all || append-flags -fno-stack-protector-all;; |
|
|
143 | esac |
|
|
144 | done |
|
|
145 | } |
|
|
146 | |
|
|
147 | # Remove occurrences of strings from variable given in $1 |
|
|
148 | # Strings removed are matched as globs, so for example |
|
|
149 | # '-O*' would remove -O1, -O2 etc. |
|
|
150 | _filter-var() { |
|
|
151 | local f x VAR VAL |
|
|
152 | declare -a new |
|
|
153 | |
|
|
154 | VAR=$1 |
|
|
155 | shift |
|
|
156 | eval VAL=\${${VAR}} |
|
|
157 | for f in ${VAL}; do |
|
|
158 | for x in "$@"; do |
|
|
159 | # Note this should work with globs like -O* |
|
|
160 | [[ ${f} == ${x} ]] && continue 2 |
|
|
161 | done |
|
|
162 | eval new\[\${\#new\[@]}]=\${f} |
|
|
163 | done |
|
|
164 | eval export ${VAR}=\${new\[*]} |
| 77 | } |
165 | } |
| 78 | |
166 | |
| 79 | filter-flags() { |
167 | filter-flags() { |
| 80 | for x in "$@" ; do |
168 | _filter-hardened "$@" |
| 81 | case "${x}" in |
169 | _filter-var CFLAGS "$@" |
| 82 | -fPIC|-fpic|-fPIE|-fpie) etexec-flags;; |
170 | _filter-var CPPFLAGS "$@" |
| 83 | -fstack-protector|-fstack-protector-all) fstack-flags;; |
171 | _filter-var CXXFLAGS "$@" |
| 84 | *) ;; |
|
|
| 85 | esac |
|
|
| 86 | 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 |
172 | return 0 |
|
|
173 | } |
|
|
174 | |
|
|
175 | filter-lfs-flags() { |
|
|
176 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
|
|
177 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
178 | } |
|
|
179 | |
|
|
180 | append-cppflags() { |
|
|
181 | [[ -z $* ]] && return 0 |
|
|
182 | export CPPFLAGS="${CPPFLAGS} $*" |
|
|
183 | return 0 |
|
|
184 | } |
|
|
185 | |
|
|
186 | append-lfs-flags() { |
|
|
187 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
|
|
188 | append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 99 | } |
189 | } |
| 100 | |
190 | |
| 101 | append-flags() { |
191 | append-flags() { |
|
|
192 | [[ -z $* ]] && return 0 |
| 102 | export CFLAGS="${CFLAGS} $@" |
193 | export CFLAGS="${CFLAGS} $*" |
| 103 | export CXXFLAGS="${CXXFLAGS} $@" |
194 | export CXXFLAGS="${CXXFLAGS} $*" |
| 104 | [ "`is-flag -fno-stack-protector`" -o "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
|
|
| 105 | return 0 |
195 | return 0 |
| 106 | } |
196 | } |
| 107 | |
197 | |
| 108 | replace-flags() { |
198 | replace-flags() { |
| 109 | # we do this fancy spacing stuff so as to not filter |
199 | [[ $# != 2 ]] \ |
| 110 | # out part of a flag ... we want flag atoms ! :D |
200 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
| 111 | CFLAGS=" ${CFLAGS} " |
201 | && die "replace-flags takes 2 arguments, not $#" |
| 112 | CXXFLAGS=" ${CXXFLAGS} " |
202 | |
| 113 | CFLAGS="${CFLAGS// ${1} / ${2} }" |
203 | local f fset |
| 114 | CXXFLAGS="${CXXFLAGS// ${1} / ${2} }" |
204 | declare -a new_CFLAGS new_CXXFLAGS |
| 115 | CFLAGS="${CFLAGS:1:${#CFLAGS}-2}" |
205 | |
| 116 | CXXFLAGS="${CXXFLAGS:1:${#CXXFLAGS}-2}" |
206 | for fset in CFLAGS CXXFLAGS; do |
|
|
207 | # Looping over the flags instead of using a global |
|
|
208 | # substitution ensures that we're working with flag atoms. |
|
|
209 | # Otherwise globs like -O* have the potential to wipe out the |
|
|
210 | # list of flags. |
|
|
211 | for f in ${!fset}; do |
|
|
212 | # Note this should work with globs like -O* |
|
|
213 | [[ ${f} == ${1} ]] && f=${2} |
|
|
214 | eval new_${fset}\[\${\#new_${fset}\[@]}]=\${f} |
|
|
215 | done |
|
|
216 | eval export ${fset}=\${new_${fset}\[*]} |
|
|
217 | done |
|
|
218 | |
| 117 | return 0 |
219 | return 0 |
| 118 | } |
220 | } |
| 119 | |
221 | |
| 120 | replace-cpu-flags() { |
222 | replace-cpu-flags() { |
| 121 | local newcpu="$1" ; shift |
223 | local newcpu="$#" ; newcpu="${!newcpu}" |
| 122 | local oldcpu="" |
224 | while [ $# -gt 1 ] ; do |
| 123 | for oldcpu in "$@" ; do |
225 | # quote to make sure that no globbing is done (particularly on |
|
|
226 | # ${oldcpu}) prior to calling replace-flags |
| 124 | replace-flags -march=${oldcpu} -march=${newcpu} |
227 | replace-flags "-march=${1}" "-march=${newcpu}" |
| 125 | replace-flags -mcpu=${oldcpu} -mcpu=${newcpu} |
228 | replace-flags "-mcpu=${1}" "-mcpu=${newcpu}" |
|
|
229 | replace-flags "-mtune=${1}" "-mtune=${newcpu}" |
|
|
230 | shift |
| 126 | done |
231 | done |
|
|
232 | return 0 |
|
|
233 | } |
|
|
234 | |
|
|
235 | _is_flagq() { |
|
|
236 | local x |
|
|
237 | for x in ${!1} ; do |
|
|
238 | [[ ${x} == $2 ]] && return 0 |
|
|
239 | done |
| 127 | return 0 |
240 | return 1 |
|
|
241 | } |
|
|
242 | |
|
|
243 | is-flagq() { |
|
|
244 | [[ -n $2 ]] && die "Usage: is-flag <flag>" |
|
|
245 | _is_flagq CFLAGS $1 || _is_flagq CXXFLAGS $1 |
| 128 | } |
246 | } |
| 129 | |
247 | |
| 130 | is-flag() { |
248 | is-flag() { |
| 131 | for x in ${CFLAGS} ${CXXFLAGS} ; do |
249 | is-flagq "$@" && echo true |
| 132 | if [ "${x}" == "$1" ] ; then |
250 | } |
| 133 | echo true |
251 | |
| 134 | return 0 |
252 | is-ldflagq() { |
| 135 | fi |
253 | [[ -n $2 ]] && die "Usage: is-ldflag <flag>" |
| 136 | done |
254 | _is_flagq LDFLAGS $1 |
| 137 | return 1 |
255 | } |
|
|
256 | |
|
|
257 | is-ldflag() { |
|
|
258 | is-ldflagq "$@" && echo true |
| 138 | } |
259 | } |
| 139 | |
260 | |
| 140 | filter-mfpmath() { |
261 | filter-mfpmath() { |
|
|
262 | local orig_mfpmath new_math prune_math |
|
|
263 | |
| 141 | # save the original -mfpmath flag |
264 | # save the original -mfpmath flag |
| 142 | local orig_mfpmath="`get-flag -mfpmath`" |
265 | orig_mfpmath=$(get-flag -mfpmath) |
| 143 | # get the value of the current -mfpmath flag |
266 | # get the value of the current -mfpmath flag |
| 144 | local new_math=" `get-flag mfpmath | tr , ' '` " |
267 | new_math=$(get-flag mfpmath) |
|
|
268 | new_math=" ${new_math//,/ } " |
| 145 | # figure out which math values are to be removed |
269 | # figure out which math values are to be removed |
| 146 | local prune_math="" |
270 | prune_math="" |
| 147 | for prune_math in "$@" ; do |
271 | for prune_math in "$@" ; do |
| 148 | new_math="${new_math/ ${prune_math} / }" |
272 | new_math=${new_math/ ${prune_math} / } |
| 149 | done |
273 | done |
| 150 | new_math="`echo ${new_math:1:${#new_math}-2} | tr ' ' ,`" |
274 | new_math=$(echo ${new_math}) |
|
|
275 | new_math=${new_math// /,} |
| 151 | |
276 | |
| 152 | if [ -z "${new_math}" ] ; then |
277 | if [[ -z ${new_math} ]] ; then |
| 153 | # if we're removing all user specified math values are |
278 | # if we're removing all user specified math values are |
| 154 | # slated for removal, then we just filter the flag |
279 | # slated for removal, then we just filter the flag |
| 155 | filter-flags ${orig_mfpmath} |
280 | filter-flags ${orig_mfpmath} |
| 156 | else |
281 | else |
| 157 | # if we only want to filter some of the user specified |
282 | # if we only want to filter some of the user specified |
| … | |
… | |
| 160 | fi |
285 | fi |
| 161 | return 0 |
286 | return 0 |
| 162 | } |
287 | } |
| 163 | |
288 | |
| 164 | strip-flags() { |
289 | strip-flags() { |
|
|
290 | local x y flag NEW_CFLAGS NEW_CXXFLAGS |
|
|
291 | |
| 165 | setup-allowed-flags |
292 | setup-allowed-flags |
| 166 | |
293 | |
| 167 | local NEW_CFLAGS="" |
294 | local NEW_CFLAGS="" |
| 168 | local NEW_CXXFLAGS="" |
295 | local NEW_CXXFLAGS="" |
| 169 | |
296 | |
| 170 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
297 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 171 | if [ `has ~${ARCH} ${ACCEPT_KEYWORDS}` ] ; then |
298 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 172 | [ `use debug` ] && einfo "Enabling the use of some unstable flags" |
|
|
| 173 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
299 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 174 | fi |
300 | fi |
| 175 | |
301 | |
| 176 | set -f |
302 | set -f # disable pathname expansion |
| 177 | |
303 | |
| 178 | for x in ${CFLAGS} |
304 | for x in ${CFLAGS}; do |
| 179 | do |
|
|
| 180 | for y in ${ALLOWED_FLAGS} |
305 | for y in ${ALLOWED_FLAGS}; do |
| 181 | do |
|
|
| 182 | flag=${x%%=*} |
306 | flag=${x%%=*} |
| 183 | if [ "${flag%%${y}}" = "" ] |
307 | if [ "${flag%%${y}}" = "" ] ; then |
| 184 | then |
|
|
| 185 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
308 | NEW_CFLAGS="${NEW_CFLAGS} ${x}" |
| 186 | break |
309 | break |
| 187 | fi |
310 | fi |
| 188 | done |
311 | done |
| 189 | done |
312 | done |
| 190 | |
313 | |
| 191 | for x in ${CXXFLAGS} |
314 | for x in ${CXXFLAGS}; do |
| 192 | do |
|
|
| 193 | for y in ${ALLOWED_FLAGS} |
315 | for y in ${ALLOWED_FLAGS}; do |
| 194 | do |
|
|
| 195 | flag=${x%%=*} |
316 | flag=${x%%=*} |
| 196 | if [ "${flag%%${y}}" = "" ] |
317 | if [ "${flag%%${y}}" = "" ] ; then |
| 197 | then |
|
|
| 198 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
318 | NEW_CXXFLAGS="${NEW_CXXFLAGS} ${x}" |
| 199 | break |
319 | break |
| 200 | fi |
320 | fi |
| 201 | done |
321 | done |
| 202 | done |
322 | done |
| … | |
… | |
| 207 | fi |
327 | fi |
| 208 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
328 | if [ "${CXXFLAGS/-O}" != "${CXXFLAGS}" -a "${NEW_CXXFLAGS/-O}" = "${NEW_CXXFLAGS}" ]; then |
| 209 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
329 | NEW_CXXFLAGS="${NEW_CXXFLAGS} -O2" |
| 210 | fi |
330 | fi |
| 211 | |
331 | |
| 212 | set +f |
332 | set +f # re-enable pathname expansion |
| 213 | |
|
|
| 214 | [ `use debug` ] \ |
|
|
| 215 | && einfo "CFLAGS=\"${NEW_CFLAGS}\"" \ |
|
|
| 216 | && einfo "CXXFLAGS=\"${NEW_CXXFLAGS}\"" |
|
|
| 217 | |
333 | |
| 218 | export CFLAGS="${NEW_CFLAGS}" |
334 | export CFLAGS="${NEW_CFLAGS}" |
| 219 | export CXXFLAGS="${NEW_CXXFLAGS}" |
335 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 220 | return 0 |
336 | return 0 |
| 221 | } |
337 | } |
| 222 | |
338 | |
|
|
339 | test-flag-PROG() { |
|
|
340 | local comp=$1 |
|
|
341 | local flags="$2" |
|
|
342 | |
|
|
343 | [[ -z ${comp} || -z ${flags} ]] && \ |
|
|
344 | return 1 |
|
|
345 | |
|
|
346 | local PROG=$(tc-get${comp}) |
|
|
347 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
|
|
348 | > /dev/null 2>&1 |
|
|
349 | } |
|
|
350 | |
|
|
351 | # Returns true if C compiler support given flag |
|
|
352 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
|
|
353 | |
|
|
354 | # Returns true if C++ compiler support given flag |
|
|
355 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
356 | |
|
|
357 | test-flags-PROG() { |
|
|
358 | local comp=$1 |
|
|
359 | local flags |
|
|
360 | local x |
|
|
361 | |
|
|
362 | shift |
|
|
363 | |
|
|
364 | [[ -z ${comp} ]] && return 1 |
|
|
365 | |
|
|
366 | x="" |
|
|
367 | for x in "$@" ; do |
|
|
368 | test-flag-${comp} "${x}" && flags="${flags}${flags:+ }${x}" |
|
|
369 | done |
|
|
370 | |
|
|
371 | echo "${flags}" |
|
|
372 | |
|
|
373 | # Just bail if we dont have any flags |
|
|
374 | [[ -n ${flags} ]] |
|
|
375 | } |
|
|
376 | |
|
|
377 | # Returns (echo's) the given flags supported by the C compiler |
|
|
378 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
|
|
379 | |
|
|
380 | # Returns (echo's) the given flags supported by the C++ compiler |
|
|
381 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
|
|
382 | |
|
|
383 | # Short-hand that should hopefully work for both C and C++ compiler, but |
|
|
384 | # its really only present due to the append-flags() abomination. |
|
|
385 | test-flags() { test-flags-CC "$@"; } |
|
|
386 | |
|
|
387 | # Depriciated, use test-flags() |
| 223 | test_flag() { |
388 | test_flag() { |
| 224 | if gcc -S -xc "$@" -o /dev/null /dev/null >/dev/null 2>&1; then |
389 | ewarn "test_flag: deprecated, please use test-flags()!" >&2 |
| 225 | echo "$@" |
390 | |
|
|
391 | test-flags-CC "$@" |
|
|
392 | } |
|
|
393 | |
|
|
394 | test_version_info() { |
|
|
395 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 226 | return 0 |
396 | return 0 |
| 227 | fi |
397 | else |
| 228 | return 1 |
398 | return 1 |
|
|
399 | fi |
| 229 | } |
400 | } |
| 230 | |
401 | |
| 231 | strip-unsupported-flags() { |
402 | strip-unsupported-flags() { |
| 232 | for x in ${CFLAGS} ; do |
403 | export CFLAGS=$(test-flags-CC ${CFLAGS}) |
| 233 | NEW_CFLAGS=${NEW_CFLAGS}" ""`test_flag ${x}`" |
404 | export CXXFLAGS=$(test-flags-CXX ${CXXFLAGS}) |
| 234 | done |
|
|
| 235 | for x in ${CXXFLAGS} ; do |
|
|
| 236 | NEW_CXXFLAGS=${NEW_CXXFLAGS}" ""`test_flag ${x}`" |
|
|
| 237 | done |
|
|
| 238 | |
|
|
| 239 | export CFLAGS="${NEW_CFLAGS}" |
|
|
| 240 | export CXXFLAGS="${NEW_CXXFLAGS}" |
|
|
| 241 | } |
405 | } |
| 242 | |
406 | |
| 243 | get-flag() { |
407 | get-flag() { |
|
|
408 | local f findflag="$1" |
|
|
409 | |
| 244 | # this code looks a little flaky but seems to work for |
410 | # this code looks a little flaky but seems to work for |
| 245 | # everything we want ... |
411 | # everything we want ... |
| 246 | # for example, if CFLAGS="-march=i686": |
412 | # for example, if CFLAGS="-march=i686": |
| 247 | # `get-flags -march` == "-march=i686" |
413 | # `get-flag -march` == "-march=i686" |
| 248 | # `get-flags march` == "i686" |
414 | # `get-flag march` == "i686" |
| 249 | local findflag="$1" |
|
|
| 250 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
415 | for f in ${CFLAGS} ${CXXFLAGS} ; do |
| 251 | if [ "${f/${findflag}}" != "${f}" ] ; then |
416 | if [ "${f/${findflag}}" != "${f}" ] ; then |
| 252 | echo "${f/-${findflag}=}" |
417 | printf "%s\n" "${f/-${findflag}=}" |
| 253 | return 0 |
418 | return 0 |
| 254 | fi |
419 | fi |
| 255 | done |
420 | done |
| 256 | return 1 |
421 | return 1 |
| 257 | } |
422 | } |
| 258 | |
423 | |
|
|
424 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
|
|
425 | has_hardened() { |
|
|
426 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" >&2 |
|
|
427 | |
|
|
428 | test_version_info Hardened && return 0 |
|
|
429 | # The specs file wont exist unless gcc has GCC_SPECS support |
|
|
430 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
|
|
431 | } |
|
|
432 | |
|
|
433 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
434 | # indicate whether PIC is set |
|
|
435 | has_pic() { |
|
|
436 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >&2 |
|
|
437 | |
|
|
438 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
439 | ${CFLAGS/-fpic} != ${CFLAGS} ]] || \ |
|
|
440 | gcc-specs-pie |
|
|
441 | } |
|
|
442 | |
|
|
443 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
|
|
444 | # indicate whether PIE is set |
|
|
445 | has_pie() { |
|
|
446 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >&2 |
|
|
447 | |
|
|
448 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
449 | ${CFLAGS/-fpie} != ${CFLAGS} ]] || \ |
|
|
450 | gcc-specs-pie |
|
|
451 | } |
|
|
452 | |
|
|
453 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
454 | # indicate whether code for SSP is being generated for all functions |
|
|
455 | has_ssp_all() { |
|
|
456 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >&2 |
|
|
457 | |
|
|
458 | # note; this matches only -fstack-protector-all |
|
|
459 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
|
|
460 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
|
|
461 | gcc-specs-ssp-all |
|
|
462 | } |
|
|
463 | |
|
|
464 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
465 | # indicate whether code for SSP is being generated |
|
|
466 | has_ssp() { |
|
|
467 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >&2 |
|
|
468 | |
|
|
469 | # note; this matches both -fstack-protector and -fstack-protector-all |
|
|
470 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
|
|
471 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
|
|
472 | gcc-specs-ssp |
|
|
473 | } |
|
|
474 | |
|
|
475 | has_m64() { |
|
|
476 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
477 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
478 | # please dont replace this function with test_flag in some future |
|
|
479 | # clean-up! |
|
|
480 | |
|
|
481 | local temp="$(emktemp)" |
|
|
482 | echo "int main() { return(0); }" > "${temp}".c |
|
|
483 | MY_CC=$(tc-getCC) |
|
|
484 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
485 | local ret=$? |
|
|
486 | rm -f "${temp}".c |
|
|
487 | [[ ${ret} != 1 ]] && return 0 |
|
|
488 | return 1 |
|
|
489 | } |
|
|
490 | |
|
|
491 | has_m32() { |
|
|
492 | # this doesnt test if the flag is accepted, it tests if the flag |
|
|
493 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
|
|
494 | # please dont replace this function with test_flag in some future |
|
|
495 | # clean-up! |
|
|
496 | |
|
|
497 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
|
|
498 | |
|
|
499 | local temp=$(emktemp) |
|
|
500 | echo "int main() { return(0); }" > "${temp}".c |
|
|
501 | MY_CC=$(tc-getCC) |
|
|
502 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
|
|
503 | local ret=$? |
|
|
504 | rm -f "${temp}".c |
|
|
505 | [[ ${ret} != 1 ]] && return 0 |
|
|
506 | return 1 |
|
|
507 | } |
|
|
508 | |
| 259 | replace-sparc64-flags() { |
509 | replace-sparc64-flags() { |
| 260 | local SPARC64_CPUS="ultrasparc v9" |
510 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 261 | |
511 | |
| 262 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ] |
512 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 263 | then |
|
|
| 264 | for x in ${SPARC64_CPUS} |
513 | for x in ${SPARC64_CPUS}; do |
| 265 | do |
|
|
| 266 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
514 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 267 | done |
515 | done |
| 268 | else |
516 | else |
| 269 | for x in ${SPARC64_CPUS} |
517 | for x in ${SPARC64_CPUS}; do |
| 270 | do |
|
|
| 271 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
518 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 272 | done |
519 | done |
| 273 | fi |
520 | fi |
| 274 | |
521 | |
| 275 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ] |
522 | if [ "${CXXFLAGS/mtune}" != "${CXXFLAGS}" ]; then |
| 276 | then |
|
|
| 277 | for x in ${SPARC64_CPUS} |
523 | for x in ${SPARC64_CPUS}; do |
| 278 | do |
|
|
| 279 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
524 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 280 | done |
525 | done |
| 281 | else |
526 | else |
| 282 | for x in ${SPARC64_CPUS} |
527 | for x in ${SPARC64_CPUS}; do |
| 283 | do |
|
|
| 284 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
528 | CXXFLAGS="${CXXFLAGS/-mcpu=${x}/-mcpu=v8 -mtune=${x}}" |
| 285 | done |
529 | done |
| 286 | fi |
530 | fi |
|
|
531 | |
|
|
532 | export CFLAGS CXXFLAGS |
| 287 | } |
533 | } |
| 288 | |
534 | |
| 289 | append-ldflags() { |
535 | append-ldflags() { |
|
|
536 | [[ -z $* ]] && return 0 |
| 290 | LDFLAGS="${LDFLAGS} $@" |
537 | export LDFLAGS="${LDFLAGS} $*" |
| 291 | return 0 |
538 | return 0 |
| 292 | } |
539 | } |
| 293 | |
540 | |
| 294 | etexec-flags() { |
541 | # Remove flags from LDFLAGS - it's up to the ebuild to filter |
| 295 | has_version sys-devel/hardened-gcc |
542 | # CFLAGS and CXXFLAGS via filter-flags if they need to. |
| 296 | if [ $? == 0 ] ; then |
543 | filter-ldflags() { |
| 297 | if [ "`is-flag -yet_exec`" != "true" ]; then |
544 | _filter-var LDFLAGS "$@" |
| 298 | debug-print ">>> appending flags -yet_exec" |
545 | return 0 |
| 299 | append-flags -yet_exec |
|
|
| 300 | append-ldflags -yet_exec |
|
|
| 301 | fi |
|
|
| 302 | fi |
|
|
| 303 | } |
546 | } |
| 304 | |
547 | |
| 305 | fstack-flags() { |
548 | # Turn C style ldflags (-Wl,-foo) into straight ldflags - the results |
| 306 | has_version sys-devel/hardened-gcc |
549 | # are suitable for passing directly to 'ld'; note LDFLAGS is usually passed |
| 307 | if [ $? == 0 ] ; then |
550 | # to gcc where it needs the '-Wl,'. |
| 308 | if [ "`is-flag -yno_propolice`" != "true" ]; then |
551 | raw-ldflags() { |
| 309 | debug-print ">>> appending flags -yno_propolice" |
552 | local x input="$@" |
| 310 | append-flags -yno_propolice |
553 | [[ -z ${input} ]] && input=${LDFLAGS} |
| 311 | append-ldflags -yno_propolice |
554 | set -- |
| 312 | fi |
555 | for x in ${input} ; do |
| 313 | fi |
556 | x=${x#-Wl,} |
|
|
557 | set -- "$@" ${x//,/ } |
|
|
558 | done |
|
|
559 | echo "$@" |
| 314 | } |
560 | } |
|
|
561 | |
|
|
562 | # Gets the flags needed for "NOW" binding |
|
|
563 | bindnow-flags() { |
|
|
564 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
565 | *GNU* | *'with BFD'*) # GNU ld |
|
|
566 | echo "-Wl,-z,now" ;; |
|
|
567 | *Apple*) # Darwin ld |
|
|
568 | echo "-bind_at_load" ;; |
|
|
569 | *) |
|
|
570 | # Some linkers just recognize -V instead of -v |
|
|
571 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
572 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
573 | echo "-Wl,-z,now" ;; |
|
|
574 | esac |
|
|
575 | ;; |
|
|
576 | esac |
|
|
577 | } |
|
|
578 | |
|
|
579 | |
|
|
580 | # Some tests for when we screw with things and want to make |
|
|
581 | # sure we didn't break anything |
|
|
582 | #TESTS() { |
|
|
583 | # CFLAGS="-a -b -c=1" |
|
|
584 | # CXXFLAGS="-x -y -z=2" |
|
|
585 | # LDFLAGS="-l -m -n=3" |
|
|
586 | # |
|
|
587 | # die() { exit 1; } |
|
|
588 | # (is-flag 1 2 3) && die |
|
|
589 | # (is-ldflag 1 2 3) && die |
|
|
590 | # |
|
|
591 | # is-flagq -l && die |
|
|
592 | # is-ldflagq -a && die |
|
|
593 | # is-flagq -a || die |
|
|
594 | # is-flagq -x || die |
|
|
595 | # is-ldflagq -n=* || die |
|
|
596 | # is-ldflagq -n && die |
|
|
597 | # |
|
|
598 | # strip-unsupported-flags |
|
|
599 | # [[ ${CFLAGS} == "-c=1" ]] || die |
|
|
600 | # [[ ${CXXFLAGS} == "-y -z=2" ]] || die |
|
|
601 | # |
|
|
602 | # echo "All tests pass" |
|
|
603 | #} |
|
|
604 | #TESTS |