2010-09-03 15:30:58 +02:00
|
|
|
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
|
2010-09-06 17:46:09 +02:00
|
|
|
yes | no | bid | dpd) default_decimal_float=$enable_decimal_float ;;
|
2010-09-03 15:30:58 +02:00
|
|
|
*) 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
|
2010-10-02 16:42:48 +02:00
|
|
|
powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* | \
|
2016-03-22 10:25:20 +01:00
|
|
|
i?86*-*-elfiamcu | i?86*-*-gnu* | \
|
2010-10-02 16:42:48 +02:00
|
|
|
i?86*-*-mingw* | x86_64*-*-mingw* | \
|
2013-04-30 14:40:42 +02:00
|
|
|
i?86*-*-cygwin* | x86_64*-*-cygwin*)
|
2010-09-03 15:30:58 +02:00
|
|
|
enable_decimal_float=yes
|
|
|
|
;;
|
|
|
|
*)
|
2010-09-06 17:46:09 +02:00
|
|
|
AC_MSG_WARN([decimal float is not supported for this target, ignored])
|
2010-09-03 15:30:58 +02:00
|
|
|
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
|
2010-09-06 17:46:09 +02:00
|
|
|
default_decimal_float=$enable_decimal_float
|
2010-09-03 15:30:58 +02:00
|
|
|
;;
|
|
|
|
xno)
|
|
|
|
# ENABLE_DECIMAL_FLOAT is set to 0. But we have to have proper
|
|
|
|
# dependency on libdecnumber.
|
2010-09-06 17:46:09 +02:00
|
|
|
default_decimal_float=dpd
|
2010-09-03 15:30:58 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(enable_decimal_float)
|
|
|
|
|
2010-09-06 17:46:09 +02:00
|
|
|
])
|