dfp.m4 1.49 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
dnl @synopsis GCC_AC_ENABLE_DECIMAL_FLOAT([target triplet])
dnl
dnl Enable C extension for decimal float if target supports it.
dnl
dnl @author Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

AC_DEFUN([GCC_AC_ENABLE_DECIMAL_FLOAT],
[
AC_ARG_ENABLE(decimal-float,
[  --enable-decimal-float={no,yes,bid,dpd}
			enable decimal float extension to C.  Selecting 'bid'
			or 'dpd' choses which decimal floating point format
			to use],
[
  case $enable_decimal_float in
16
    yes | no | bid | dpd) default_decimal_float=$enable_decimal_float ;;
17 18 19 20 21 22
    *) AC_MSG_ERROR(['$enable_decimal_float' is an invalid value for --enable-decimal-float.
Valid choices are 'yes', 'bid', 'dpd', and 'no'.]) ;;
  esac
],
[
  case $1 in
Kai Tietz committed
23
    powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* | \
24
    i?86*-*-elfiamcu | i?86*-*-gnu* | \
Kai Tietz committed
25
    i?86*-*-mingw* | x86_64*-*-mingw* | \
26
    i?86*-*-cygwin* | x86_64*-*-cygwin*)
27 28 29
      enable_decimal_float=yes
      ;;
    *)
30
      AC_MSG_WARN([decimal float is not supported for this target, ignored])
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
      enable_decimal_float=no
      ;;
  esac
])

# x86's use BID format instead of DPD
case x$enable_decimal_float in
  xyes)
    case $1 in
      i?86*-*-* | x86_64*-*-*)
	enable_decimal_float=bid
	;;
      *)
	enable_decimal_float=dpd
	;;
    esac
47
    default_decimal_float=$enable_decimal_float
48 49 50 51
    ;;
  xno)
    # ENABLE_DECIMAL_FLOAT is set to 0. But we have to have proper
    # dependency on libdecnumber.
52
    default_decimal_float=dpd
53 54 55 56
    ;;
esac
AC_SUBST(enable_decimal_float)

57
])