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