| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2005 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.83 2005/02/19 07:11:31 mr_bones_ Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.101 2006/01/01 01:14:59 swegener Exp $ |
| 4 | # |
|
|
| 5 | # Author Bart Verwilst <verwilst@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | ECLASS=flag-o-matic |
|
|
| 8 | INHERITED="$INHERITED $ECLASS" |
|
|
| 9 | |
|
|
| 10 | IUSE="debug" |
|
|
| 11 | |
5 | |
| 12 | # need access to emktemp() |
6 | # need access to emktemp() |
| 13 | inherit eutils toolchain-funcs multilib |
7 | inherit eutils toolchain-funcs multilib |
| 14 | |
8 | |
| 15 | # |
9 | # |
| … | |
… | |
| 63 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
57 | # -fno-stack-protector to {C,CXX,LD}FLAGS |
| 64 | # when a package is filtering -fstack-protector, -fstack-protector-all |
58 | # when a package is filtering -fstack-protector, -fstack-protector-all |
| 65 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
59 | # notice: modern automatic specs files will also suppress -fstack-protector-all |
| 66 | # when only -fno-stack-protector is given |
60 | # when only -fno-stack-protector is given |
| 67 | # |
61 | # |
|
|
62 | #### bindnow-flags #### |
|
|
63 | # Returns the flags to enable "now" binding in the current selected linker. |
|
|
64 | # |
|
|
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 |
|
|
92 | # |
| 68 | |
93 | |
| 69 | # C[XX]FLAGS that we allow in strip-flags |
94 | # C[XX]FLAGS that we allow in strip-flags |
| 70 | setup-allowed-flags() { |
95 | setup-allowed-flags() { |
| 71 | if [ -z "${ALLOWED_FLAGS}" ] ; then |
96 | if [[ -z ${ALLOWED_FLAGS} ]] ; then |
| 72 | export ALLOWED_FLAGS="-pipe" |
97 | export ALLOWED_FLAGS="-pipe" |
| 73 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
98 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -O -O0 -O1 -O2 -mcpu -march -mtune" |
| 74 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fno-stack-protector" |
99 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fstack-protector -fstack-protector-all" |
|
|
100 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fbounds-checking -fno-bounds-checking" |
| 75 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-pie -fno-unit-at-a-time" |
101 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-pie -fno-unit-at-a-time" |
| 76 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
102 | export ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3 -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3" |
| 77 | case "${ARCH}" in |
|
|
| 78 | mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 -EL -EB -mabi" ;; |
|
|
| 79 | amd64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC -m64" ;; |
|
|
| 80 | x86) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32" ;; |
|
|
| 81 | alpha) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
| 82 | ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -fPIC" ;; |
|
|
| 83 | sparc) ALLOWED_FLAGS="${ALLOWED_FLAGS} -m32 -m64" ;; |
|
|
| 84 | ppc) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mabi" ;; |
|
|
| 85 | esac |
|
|
| 86 | fi |
103 | fi |
| 87 | # allow a bunch of flags that negate features / control ABI |
104 | # allow a bunch of flags that negate features / control ABI |
| 88 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
105 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-stack-protector -fno-stack-protector-all" |
| 89 | case "${ARCH}" in |
106 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs \ |
| 90 | x86|amd64|ia64) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow" ;; |
107 | -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow \ |
| 91 | esac |
108 | -mips1 -mips2 -mips3 -mips4 -mips32 -mips64 -mips16 \ |
| 92 | ALLOWED_FLAGS="${ALLOWED_FLAGS} -mregparm -mno-app-regs -mapp-regs -msoft-float -mflat -mno-faster-structs -mfaster-structs -mlittle-endian -mbig-endian -mlive-g0 -mcmodel -mno-stack-bias -mstack-bias" |
109 | -msoft-float -mno-soft-float -mhard-float -mno-hard-float -mfpu \ |
|
|
110 | -mieee -mieee-with-inexact \ |
|
|
111 | -mtls-direct-seg-refs -mno-tls-direct-seg-refs \ |
|
|
112 | -mflat -mno-flat -mno-faster-structs -mfaster-structs \ |
|
|
113 | -m32 -m64 -mabi -mlittle-endian -mbig-endian -EL -EB -fPIC \ |
|
|
114 | -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias" |
| 93 | |
115 | |
| 94 | # C[XX]FLAGS that we are think is ok, but needs testing |
116 | # C[XX]FLAGS that we are think is ok, but needs testing |
| 95 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
117 | # NOTE: currently -Os have issues with gcc3 and K6* arch's |
| 96 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
118 | export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks -fprefetch-loop-arrays" |
| 97 | return 0 |
119 | return 0 |
| … | |
… | |
| 127 | |
149 | |
| 128 | return 0 |
150 | return 0 |
| 129 | } |
151 | } |
| 130 | |
152 | |
| 131 | filter-lfs-flags() { |
153 | filter-lfs-flags() { |
|
|
154 | [[ -n $@ ]] && die "filter-lfs-flags takes no arguments" |
| 132 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
155 | filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 133 | } |
156 | } |
| 134 | |
157 | |
| 135 | append-lfs-flags() { |
158 | append-lfs-flags() { |
|
|
159 | [[ -n $@ ]] && die "append-lfs-flags takes no arguments" |
| 136 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
160 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
| 137 | } |
161 | } |
| 138 | |
162 | |
| 139 | append-flags() { |
163 | append-flags() { |
| 140 | [[ -z $* ]] && return 0 |
164 | [[ -z $* ]] && return 0 |
| … | |
… | |
| 144 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
168 | -n "`is-flag -fno-stack-protector-all`" ] && fstack-flags |
| 145 | return 0 |
169 | return 0 |
| 146 | } |
170 | } |
| 147 | |
171 | |
| 148 | replace-flags() { |
172 | replace-flags() { |
|
|
173 | [[ $# != 2 ]] \ |
|
|
174 | && echo && eerror "Usage: replace-flags <old flag> <new flag>" \ |
|
|
175 | && die "replace-flags takes 2 arguments, not $#" |
|
|
176 | |
| 149 | local f fset |
177 | local f fset |
| 150 | declare -a new_CFLAGS new_CXXFLAGS |
178 | declare -a new_CFLAGS new_CXXFLAGS |
| 151 | |
179 | |
| 152 | for fset in CFLAGS CXXFLAGS; do |
180 | for fset in CFLAGS CXXFLAGS; do |
| 153 | # Looping over the flags instead of using a global |
181 | # Looping over the flags instead of using a global |
| … | |
… | |
| 224 | |
252 | |
| 225 | local NEW_CFLAGS="" |
253 | local NEW_CFLAGS="" |
| 226 | local NEW_CXXFLAGS="" |
254 | local NEW_CXXFLAGS="" |
| 227 | |
255 | |
| 228 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
256 | # Allow unstable C[XX]FLAGS if we are using unstable profile ... |
| 229 | if has ~${ARCH} ${ACCEPT_KEYWORDS} ; then |
257 | if has ~$(tc-arch) ${ACCEPT_KEYWORDS} ; then |
| 230 | use debug && einfo "Enabling the use of some unstable flags" |
|
|
| 231 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
258 | ALLOWED_FLAGS="${ALLOWED_FLAGS} ${UNSTABLE_FLAGS}" |
| 232 | fi |
259 | fi |
| 233 | |
260 | |
| 234 | set -f # disable pathname expansion |
261 | set -f # disable pathname expansion |
| 235 | |
262 | |
| … | |
… | |
| 266 | export CFLAGS="${NEW_CFLAGS}" |
293 | export CFLAGS="${NEW_CFLAGS}" |
| 267 | export CXXFLAGS="${NEW_CXXFLAGS}" |
294 | export CXXFLAGS="${NEW_CXXFLAGS}" |
| 268 | return 0 |
295 | return 0 |
| 269 | } |
296 | } |
| 270 | |
297 | |
|
|
298 | test-flag-PROG() { |
|
|
299 | local comp=$1 |
|
|
300 | local flags="$2" |
|
|
301 | |
|
|
302 | [[ -z ${comp} || -z ${flags} ]] && \ |
|
|
303 | return 1 |
|
|
304 | |
|
|
305 | local PROG=$(tc-get${comp}) |
|
|
306 | ${PROG} ${flags} -S -o /dev/null -xc /dev/null \ |
|
|
307 | > /dev/null 2>&1 |
|
|
308 | } |
|
|
309 | |
|
|
310 | # Returns true if C compiler support given flag |
|
|
311 | test-flag-CC() { test-flag-PROG "CC" "$1"; } |
|
|
312 | |
|
|
313 | # Returns true if C++ compiler support given flag |
|
|
314 | test-flag-CXX() { test-flag-PROG "CXX" "$1"; } |
|
|
315 | |
|
|
316 | test-flags-PROG() { |
|
|
317 | local comp=$1 |
|
|
318 | local flags |
|
|
319 | local x |
|
|
320 | |
|
|
321 | shift |
|
|
322 | |
|
|
323 | [[ -z ${comp} ]] && \ |
|
|
324 | return 1 |
|
|
325 | |
|
|
326 | for x in "$@" ; do |
|
|
327 | test-flag-${comp} "${x}" && flags="${flags} ${x}" |
|
|
328 | done |
|
|
329 | |
|
|
330 | echo "${flags}" |
|
|
331 | |
|
|
332 | # Just bail if we dont have any flags |
|
|
333 | [[ -n ${flags} ]] |
|
|
334 | } |
|
|
335 | |
|
|
336 | # Returns (echo's) the given flags supported by the C compiler |
|
|
337 | test-flags-CC() { test-flags-PROG "CC" "$@"; } |
|
|
338 | |
|
|
339 | # Returns (echo's) the given flags supported by the C++ compiler |
|
|
340 | test-flags-CXX() { test-flags-PROG "CXX" "$@"; } |
|
|
341 | |
|
|
342 | # Short-hand that should hopefully work for both C and C++ compiler, but |
|
|
343 | # its really only present due to the append-flags() abomination. |
|
|
344 | test-flags() { test-flags-CC "$@"; } |
|
|
345 | |
|
|
346 | # Depriciated, use test-flags() |
| 271 | test_flag() { |
347 | test_flag() { |
| 272 | if $(tc-getCC) -S -xc "$@" -o "$(emktemp)" /dev/null &>/dev/null; then |
348 | addwrite "/dev/stderr" |
| 273 | printf "%s\n" "$*" |
349 | ewarn "test_flag: deprecated, please use test-flags()!" >/dev/stderr |
| 274 | return 0 |
350 | |
| 275 | fi |
351 | test-flags-CC "$@" |
| 276 | return 1 |
|
|
| 277 | } |
352 | } |
| 278 | |
353 | |
| 279 | test_version_info() { |
354 | test_version_info() { |
| 280 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
355 | if [[ $($(tc-getCC) --version 2>&1) == *$1* ]]; then |
| 281 | return 0 |
356 | return 0 |
| … | |
… | |
| 283 | return 1 |
358 | return 1 |
| 284 | fi |
359 | fi |
| 285 | } |
360 | } |
| 286 | |
361 | |
| 287 | strip-unsupported-flags() { |
362 | strip-unsupported-flags() { |
| 288 | local NEW_CFLAGS NEW_CXXFLAGS |
363 | local x NEW_CFLAGS NEW_CXXFLAGS |
| 289 | |
364 | |
| 290 | for x in ${CFLAGS} ; do |
365 | for x in ${CFLAGS} ; do |
| 291 | NEW_CFLAGS="${NEW_CFLAGS} `test_flag ${x}`" |
366 | NEW_CFLAGS="${NEW_CFLAGS} $(test-flags ${x})" |
| 292 | done |
367 | done |
| 293 | for x in ${CXXFLAGS} ; do |
368 | for x in ${CXXFLAGS} ; do |
| 294 | NEW_CXXFLAGS="${NEW_CXXFLAGS} `test_flag ${x}`" |
369 | NEW_CXXFLAGS="${NEW_CXXFLAGS} $(test-flags ${x})" |
| 295 | done |
370 | done |
| 296 | |
371 | |
| 297 | export CFLAGS="${NEW_CFLAGS}" |
372 | export CFLAGS=${NEW_CFLAGS} |
| 298 | export CXXFLAGS="${NEW_CXXFLAGS}" |
373 | export CXXFLAGS=${NEW_CXXFLAGS} |
| 299 | } |
374 | } |
| 300 | |
375 | |
| 301 | get-flag() { |
376 | get-flag() { |
| 302 | local f findflag="$1" |
377 | local f findflag="$1" |
| 303 | |
378 | |
| … | |
… | |
| 313 | fi |
388 | fi |
| 314 | done |
389 | done |
| 315 | return 1 |
390 | return 1 |
| 316 | } |
391 | } |
| 317 | |
392 | |
|
|
393 | # DEPRECATED - use gcc-specs-relro or gcc-specs-now from toolchain-funcs |
| 318 | has_hardened() { |
394 | has_hardened() { |
|
|
395 | addwrite "/dev/stderr" |
|
|
396 | ewarn "has_hardened: deprecated, please use gcc-specs-{relro,now}()!" \ |
|
|
397 | >/dev/stderr |
|
|
398 | |
| 319 | test_version_info Hardened && return 0 |
399 | test_version_info Hardened && return 0 |
| 320 | # the specs file wont exist unless gcc has GCC_SPECS support |
400 | # The specs file wont exist unless gcc has GCC_SPECS support |
| 321 | [ -f "${GCC_SPECS}" -a "${GCC_SPECS}" != "${GCC_SPECS/hardened/}" ] && \ |
401 | [[ -f ${GCC_SPECS} && ${GCC_SPECS} != ${GCC_SPECS/hardened/} ]] |
| 322 | return 0 |
|
|
| 323 | return 1 |
|
|
| 324 | } |
402 | } |
| 325 | |
403 | |
|
|
404 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
| 326 | # indicate whether PIC is set |
405 | # indicate whether PIC is set |
| 327 | has_pic() { |
406 | has_pic() { |
| 328 | [ "${CFLAGS/-fPIC}" != "${CFLAGS}" ] && return 0 |
407 | addwrite "/dev/stderr" |
| 329 | [ "${CFLAGS/-fpic}" != "${CFLAGS}" ] && return 0 |
408 | ewarn "has_pic: deprecated, please use gcc-specs-pie()!" >/dev/stderr |
|
|
409 | |
|
|
410 | [[ ${CFLAGS/-fPIC} != ${CFLAGS} || \ |
|
|
411 | ${CFLAGS/-fpic} != ${CFLAGS} || \ |
| 330 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
412 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__) ]] |
| 331 | test_version_info pie && return 0 |
|
|
| 332 | return 1 |
|
|
| 333 | } |
413 | } |
| 334 | |
414 | |
|
|
415 | # DEPRECATED - use gcc-specs-pie from toolchain-funcs |
| 335 | # indicate whether PIE is set |
416 | # indicate whether PIE is set |
| 336 | has_pie() { |
417 | has_pie() { |
| 337 | [ "${CFLAGS/-fPIE}" != "${CFLAGS}" ] && return 0 |
418 | addwrite "/dev/stderr" |
| 338 | [ "${CFLAGS/-fpie}" != "${CFLAGS}" ] && return 0 |
419 | ewarn "has_pie: deprecated, please use gcc-specs-pie()!" >/dev/stderr |
|
|
420 | |
|
|
421 | [[ ${CFLAGS/-fPIE} != ${CFLAGS} || \ |
|
|
422 | ${CFLAGS/-fpie} != ${CFLAGS} || \ |
|
|
423 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__) || \ |
| 339 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIE__)" ] && return 0 |
424 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__) ]] |
| 340 | # test PIC while waiting for specs to be updated to generate __PIE__ |
425 | # test PIC while waiting for specs to be updated to generate __PIE__ |
|
|
426 | } |
|
|
427 | |
|
|
428 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
|
|
429 | # indicate whether code for SSP is being generated for all functions |
|
|
430 | has_ssp_all() { |
|
|
431 | addwrite "/dev/stderr" |
|
|
432 | ewarn "has_ssp_all: deprecated, please use gcc-specs-ssp()!" >/dev/stderr |
|
|
433 | |
|
|
434 | # note; this matches only -fstack-protector-all |
|
|
435 | [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ |
| 341 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __PIC__)" ] && return 0 |
436 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ |
| 342 | return 1 |
437 | gcc-specs-ssp |
| 343 | } |
438 | } |
| 344 | |
439 | |
|
|
440 | # DEPRECATED - use gcc-specs-ssp from toolchain-funcs |
| 345 | # indicate whether code for SSP is being generated |
441 | # indicate whether code for SSP is being generated |
| 346 | has_ssp() { |
442 | has_ssp() { |
|
|
443 | addwrite "/dev/stderr" |
|
|
444 | ewarn "has_ssp: deprecated, please use gcc-specs-ssp()!" >/dev/stderr |
|
|
445 | |
| 347 | # note; this matches both -fstack-protector and -fstack-protector-all |
446 | # note; this matches both -fstack-protector and -fstack-protector-all |
| 348 | [ "${CFLAGS/-fstack-protector}" != "${CFLAGS}" ] && return 0 |
447 | [[ ${CFLAGS/-fstack-protector} != ${CFLAGS} || \ |
| 349 | [ "$(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__)" ] && return 0 |
448 | -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP__) ]] || \ |
| 350 | return 1 |
449 | gcc-specs-ssp |
| 351 | } |
450 | } |
| 352 | |
451 | |
| 353 | has_m64() { |
452 | has_m64() { |
| 354 | # this doesnt test if the flag is accepted, it tests if the flag |
453 | # this doesnt test if the flag is accepted, it tests if the flag |
| 355 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
454 | # actually -WORKS-. non-multilib gcc will take both -m32 and -m64! |
| 356 | # please dont replace this function with test_flag in some future |
455 | # please dont replace this function with test_flag in some future |
| 357 | # clean-up! |
456 | # clean-up! |
|
|
457 | |
| 358 | local temp="$(emktemp)" |
458 | local temp="$(emktemp)" |
| 359 | echo "int main() { return(0); }" > ${temp}.c |
459 | echo "int main() { return(0); }" > "${temp}".c |
| 360 | MY_CC=$(tc-getCC) |
460 | MY_CC=$(tc-getCC) |
| 361 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
461 | ${MY_CC/ .*/} -m64 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
| 362 | local ret=$? |
462 | local ret=$? |
| 363 | rm -f ${temp}.c |
463 | rm -f "${temp}".c |
| 364 | [ "$ret" != "1" ] && return 0 |
464 | [[ ${ret} != 1 ]] && return 0 |
| 365 | return 1 |
465 | return 1 |
| 366 | } |
466 | } |
| 367 | |
467 | |
| 368 | has_m32() { |
468 | has_m32() { |
| 369 | # this doesnt test if the flag is accepted, it tests if the flag |
469 | # this doesnt test if the flag is accepted, it tests if the flag |
| … | |
… | |
| 371 | # please dont replace this function with test_flag in some future |
471 | # please dont replace this function with test_flag in some future |
| 372 | # clean-up! |
472 | # clean-up! |
| 373 | |
473 | |
| 374 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
474 | [ "$(tc-arch)" = "amd64" ] && has_multilib_profile && return 0 |
| 375 | |
475 | |
| 376 | local temp="$(emktemp)" |
476 | local temp=$(emktemp) |
| 377 | echo "int main() { return(0); }" > ${temp}.c |
477 | echo "int main() { return(0); }" > "${temp}".c |
| 378 | MY_CC=$(tc-getCC) |
478 | MY_CC=$(tc-getCC) |
| 379 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" ${temp}.c > /dev/null 2>&1 |
479 | ${MY_CC/ .*/} -m32 -o "$(emktemp)" "${temp}".c > /dev/null 2>&1 |
| 380 | local ret=$? |
480 | local ret=$? |
| 381 | rm -f ${temp}.c |
481 | rm -f "${temp}".c |
| 382 | [ "$ret" != "1" ] && return 0 |
482 | [[ ${ret} != 1 ]] && return 0 |
| 383 | return 1 |
483 | return 1 |
| 384 | } |
484 | } |
| 385 | |
485 | |
| 386 | replace-sparc64-flags() { |
486 | replace-sparc64-flags() { |
| 387 | local SPARC64_CPUS="ultrasparc v9" |
487 | local SPARC64_CPUS="ultrasparc3 ultrasparc v9" |
| 388 | |
488 | |
| 389 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
489 | if [ "${CFLAGS/mtune}" != "${CFLAGS}" ]; then |
| 390 | for x in ${SPARC64_CPUS}; do |
490 | for x in ${SPARC64_CPUS}; do |
| 391 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
491 | CFLAGS="${CFLAGS/-mcpu=${x}/-mcpu=v8}" |
| 392 | done |
492 | done |
| … | |
… | |
| 419 | |
519 | |
| 420 | # we do this fancy spacing stuff so as to not filter |
520 | # we do this fancy spacing stuff so as to not filter |
| 421 | # out part of a flag ... we want flag atoms ! :D |
521 | # out part of a flag ... we want flag atoms ! :D |
| 422 | LDFLAGS=" ${LDFLAGS} " |
522 | LDFLAGS=" ${LDFLAGS} " |
| 423 | for x in "$@" ; do |
523 | for x in "$@" ; do |
| 424 | LDFLAGS="${LDFLAGS// ${x} / }" |
524 | LDFLAGS=${LDFLAGS// ${x} / } |
| 425 | done |
525 | done |
|
|
526 | [[ -z ${LDFLAGS// } ]] \ |
|
|
527 | && LDFLAGS="" \ |
| 426 | LDFLAGS="${LDFLAGS:1:${#LDFLAGS}-2}" |
528 | || LDFLAGS=${LDFLAGS:1:${#LDFLAGS}-2} |
| 427 | export LDFLAGS |
529 | export LDFLAGS |
| 428 | return 0 |
530 | return 0 |
| 429 | } |
531 | } |
| 430 | |
532 | |
| 431 | fstack-flags() { |
533 | fstack-flags() { |
| 432 | if has_ssp; then |
534 | if gcc-specs-ssp; then |
| 433 | [ -z "`is-flag -fno-stack-protector`" ] && |
535 | [ -z "`is-flag -fno-stack-protector`" ] && |
| 434 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
536 | export CFLAGS="${CFLAGS} `test_flag -fno-stack-protector`" |
| 435 | fi |
537 | fi |
| 436 | return 0 |
538 | return 0 |
| 437 | } |
539 | } |
| … | |
… | |
| 440 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
542 | # bug #9016. Also thanks to Jukka Salmi <salmi@gmx.net> (bug #13907) for more |
| 441 | # fixes. |
543 | # fixes. |
| 442 | # |
544 | # |
| 443 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
545 | # Export CFLAGS and CXXFLAGS that are compadible with gcc-2.95.3 |
| 444 | gcc2-flags() { |
546 | gcc2-flags() { |
| 445 | CFLAGS=${CFLAGS//pentium-mmx/i586} |
547 | if [[ $(tc-arch) == "x86" || $(tc-arch) == "amd64" ]] ; then |
| 446 | CFLAGS=${CFLAGS//pentium[234]/i686} |
548 | CFLAGS=${CFLAGS//-mtune=/-mcpu=} |
| 447 | CFLAGS=${CFLAGS//k6-[23]/k6} |
549 | CXXFLAGS=${CXXFLAGS//-mtune=/-mcpu=} |
| 448 | CFLAGS=${CFLAGS//athlon-tbird/i686} |
|
|
| 449 | CFLAGS=${CFLAGS//athlon-4/i686} |
|
|
| 450 | CFLAGS=${CFLAGS//athlon-[xm]p/i686} |
|
|
| 451 | CFLAGS=${CFLAGS//athlon/i686} |
|
|
| 452 | |
|
|
| 453 | CXXFLAGS=${CXXFLAGS//pentium-mmx/i586} |
|
|
| 454 | CXXFLAGS=${CXXFLAGS//pentium[234]/i686} |
|
|
| 455 | CXXFLAGS=${CXXFLAGS//k6-[23]/k6} |
|
|
| 456 | CXXFLAGS=${CXXFLAGS//athlon-tbird/i686} |
|
|
| 457 | CXXFLAGS=${CXXFLAGS//athlon-4/i686} |
|
|
| 458 | CXXFLAGS=${CXXFLAGS//athlon-[xm]p/i686} |
|
|
| 459 | CXXFLAGS=${CXXFLAGS//athlon/i686} |
|
|
| 460 | |
|
|
| 461 | if [ "$ARCH" = alpha ]; then |
|
|
| 462 | CHOST=${CHOST/#alphaev6[78]/alphaev6} |
|
|
| 463 | CFLAGS=${CFLAGS//ev6[78]/ev6} |
|
|
| 464 | CXXFLAGS=${CXXFLAGS//ev6[78]/ev6} |
|
|
| 465 | fi |
550 | fi |
|
|
551 | |
|
|
552 | replace-cpu-flags k6-{2,3} k6 |
|
|
553 | replace-cpu-flags athlon{,-{tbird,4,xp,mp}} i686 |
|
|
554 | |
|
|
555 | replace-cpu-flags pentium-mmx i586 |
|
|
556 | replace-cpu-flags pentium{2,3,4} i686 |
|
|
557 | |
|
|
558 | replace-cpu-flags ev6{7,8} ev6 |
| 466 | |
559 | |
| 467 | export CFLAGS CXXFLAGS |
560 | export CFLAGS CXXFLAGS |
| 468 | } |
561 | } |
|
|
562 | |
|
|
563 | # Gets the flags needed for "NOW" binding |
|
|
564 | bindnow-flags() { |
|
|
565 | case $($(tc-getLD) -v 2>&1 </dev/null) in |
|
|
566 | *GNU* | *'with BFD'*) # GNU ld |
|
|
567 | echo "-Wl,-z,now" ;; |
|
|
568 | *Apple*) # Darwin ld |
|
|
569 | echo "-bind_at_load" ;; |
|
|
570 | *) |
|
|
571 | # Some linkers just recognize -V instead of -v |
|
|
572 | case $($(tc-getLD) -V 2>&1 </dev/null) in |
|
|
573 | *Solaris*) # Solaris accept almost the same GNU options |
|
|
574 | echo "-Wl,-z,now" ;; |
|
|
575 | esac |
|
|
576 | ;; |
|
|
577 | esac |
|
|
578 | } |