Commit fdca9350 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'cb2dbe2c'

* commit 'cb2dbe2c':
  configure: arm: Assume softfp ABI on darwin
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 9c22aedd cb2dbe2c
......@@ -4796,7 +4796,7 @@ EOF
enable vfp_args
elif check_cpp_condition stddef.h "defined _M_ARM_FP && _M_ARM_FP >= 30"; then
enable vfp_args
elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__" && [ $target_os != darwin ]; then
case "${cross_prefix:-$cc}" in
*hardfloat*) enable vfp_args; fpabi=vfp ;;
*) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment