mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Drop the hacks used for partial C99 math libraries.
All supported platforms have half-way decent C99 support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231679 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1bee90c203
commit
0df66b878f
@ -1699,9 +1699,7 @@ dnl=== SECTION 8: Check for specific functions needed
|
|||||||
dnl===
|
dnl===
|
||||||
dnl===-----------------------------------------------------------------------===
|
dnl===-----------------------------------------------------------------------===
|
||||||
|
|
||||||
AC_CHECK_FUNCS([backtrace ceilf floorf roundf rintf nearbyintf getcwd ])
|
AC_CHECK_FUNCS([backtrace getcwd ])
|
||||||
AC_CHECK_FUNCS([powf fmodf strtof round ])
|
|
||||||
AC_CHECK_FUNCS([log log2 log10 exp exp2])
|
|
||||||
AC_CHECK_FUNCS([getpagesize getrusage getrlimit setrlimit gettimeofday ])
|
AC_CHECK_FUNCS([getpagesize getrusage getrlimit setrlimit gettimeofday ])
|
||||||
AC_CHECK_FUNCS([isatty mkdtemp mkstemp ])
|
AC_CHECK_FUNCS([isatty mkdtemp mkstemp ])
|
||||||
AC_CHECK_FUNCS([mktemp posix_spawn pread realpath sbrk setrlimit ])
|
AC_CHECK_FUNCS([mktemp posix_spawn pread realpath sbrk setrlimit ])
|
||||||
@ -1765,11 +1763,6 @@ if test "$llvm_cv_os_type" = "MingW" ; then
|
|||||||
AC_DEFINE_UNQUOTED([WIN32_ELMCB_PCSTR],$llvm_cv_win32_elmcb_pcstr,[Type of 1st arg on ELM Callback])
|
AC_DEFINE_UNQUOTED([WIN32_ELMCB_PCSTR],$llvm_cv_win32_elmcb_pcstr,[Type of 1st arg on ELM Callback])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl Check for variations in the Standard C++ library and STL. These macros are
|
|
||||||
dnl provided by LLVM in the autoconf/m4 directory.
|
|
||||||
AC_FUNC_ISNAN
|
|
||||||
AC_FUNC_ISINF
|
|
||||||
|
|
||||||
dnl Check for mmap support.We also need to know if /dev/zero is required to
|
dnl Check for mmap support.We also need to know if /dev/zero is required to
|
||||||
dnl be opened for allocating RWX memory.
|
dnl be opened for allocating RWX memory.
|
||||||
dnl Make sure we aren't attempting to configure for an unknown system
|
dnl Make sure we aren't attempting to configure for an unknown system
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
dnl
|
|
||||||
dnl This function determins if the isinf function isavailable on this
|
|
||||||
dnl platform.
|
|
||||||
dnl
|
|
||||||
|
|
||||||
AC_DEFUN([AC_FUNC_ISINF],[
|
|
||||||
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_isinf_in_math_h],
|
|
||||||
[isinf], [<math.h>],
|
|
||||||
[float f; isinf(f);])
|
|
||||||
if test "$ac_cv_func_isinf_in_math_h" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_ISINF_IN_MATH_H], [1],
|
|
||||||
[Set to 1 if the isinf function is found in <math.h>])
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_isinf_in_cmath],
|
|
||||||
[isinf], [<cmath>],
|
|
||||||
[float f; isinf(f);])
|
|
||||||
if test "$ac_cv_func_isinf_in_cmath" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_ISINF_IN_CMATH], [1],
|
|
||||||
[Set to 1 if the isinf function is found in <cmath>])
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_std_isinf_in_cmath],
|
|
||||||
[std::isinf], [<cmath>],
|
|
||||||
[float f; std::isinf(f);])
|
|
||||||
if test "$ac_cv_func_std_isinf_in_cmath" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_STD_ISINF_IN_CMATH], [1],
|
|
||||||
[Set to 1 if the std::isinf function is found in <cmath>])
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_finite_in_ieeefp_h],
|
|
||||||
[finite], [<ieeefp.h>],
|
|
||||||
[float f; finite(f);])
|
|
||||||
if test "$ac_cv_func_finite_in_ieeefp_h" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H], [1],
|
|
||||||
[Set to 1 if the finite function is found in <ieeefp.h>])
|
|
||||||
fi
|
|
||||||
|
|
||||||
])
|
|
||||||
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
|||||||
#
|
|
||||||
# This function determines if the isnan function is available on this
|
|
||||||
# platform.
|
|
||||||
#
|
|
||||||
AC_DEFUN([AC_FUNC_ISNAN],[
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_isnan_in_math_h],
|
|
||||||
[isnan], [<math.h>],
|
|
||||||
[float f; isnan(f);])
|
|
||||||
|
|
||||||
if test "$ac_cv_func_isnan_in_math_h" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_isnan_in_cmath],
|
|
||||||
[isnan], [<cmath>],
|
|
||||||
[float f; isnan(f);])
|
|
||||||
if test "$ac_cv_func_isnan_in_cmath" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SINGLE_CXX_CHECK([ac_cv_func_std_isnan_in_cmath],
|
|
||||||
[std::isnan], [<cmath>],
|
|
||||||
[float f; std::isnan(f);])
|
|
||||||
if test "$ac_cv_func_std_isnan_in_cmath" = "yes" ; then
|
|
||||||
AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
|
|
||||||
fi
|
|
||||||
])
|
|
@ -137,20 +137,6 @@ check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE)
|
|||||||
check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
|
check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE)
|
||||||
check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
|
check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT)
|
||||||
check_symbol_exists(isatty unistd.h HAVE_ISATTY)
|
check_symbol_exists(isatty unistd.h HAVE_ISATTY)
|
||||||
check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH)
|
|
||||||
check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H)
|
|
||||||
check_symbol_exists(finite ieeefp.h HAVE_FINITE_IN_IEEEFP_H)
|
|
||||||
check_symbol_exists(isnan cmath HAVE_ISNAN_IN_CMATH)
|
|
||||||
check_symbol_exists(isnan math.h HAVE_ISNAN_IN_MATH_H)
|
|
||||||
check_symbol_exists(ceilf math.h HAVE_CEILF)
|
|
||||||
check_symbol_exists(floorf math.h HAVE_FLOORF)
|
|
||||||
check_symbol_exists(fmodf math.h HAVE_FMODF)
|
|
||||||
check_symbol_exists(log math.h HAVE_LOG)
|
|
||||||
check_symbol_exists(log2 math.h HAVE_LOG2)
|
|
||||||
check_symbol_exists(log10 math.h HAVE_LOG10)
|
|
||||||
check_symbol_exists(exp math.h HAVE_EXP)
|
|
||||||
check_symbol_exists(exp2 math.h HAVE_EXP2)
|
|
||||||
check_symbol_exists(exp10 math.h HAVE_EXP10)
|
|
||||||
check_symbol_exists(futimens sys/stat.h HAVE_FUTIMENS)
|
check_symbol_exists(futimens sys/stat.h HAVE_FUTIMENS)
|
||||||
check_symbol_exists(futimes sys/time.h HAVE_FUTIMES)
|
check_symbol_exists(futimes sys/time.h HAVE_FUTIMES)
|
||||||
if( HAVE_SETJMP_H )
|
if( HAVE_SETJMP_H )
|
||||||
@ -162,7 +148,6 @@ endif()
|
|||||||
if( HAVE_SYS_UIO_H )
|
if( HAVE_SYS_UIO_H )
|
||||||
check_symbol_exists(writev sys/uio.h HAVE_WRITEV)
|
check_symbol_exists(writev sys/uio.h HAVE_WRITEV)
|
||||||
endif()
|
endif()
|
||||||
check_symbol_exists(nearbyintf math.h HAVE_NEARBYINTF)
|
|
||||||
check_symbol_exists(mallctl malloc_np.h HAVE_MALLCTL)
|
check_symbol_exists(mallctl malloc_np.h HAVE_MALLCTL)
|
||||||
check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
|
check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO)
|
||||||
check_symbol_exists(malloc_zone_statistics malloc/malloc.h
|
check_symbol_exists(malloc_zone_statistics malloc/malloc.h
|
||||||
|
870
configure
vendored
870
configure
vendored
@ -13699,239 +13699,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
for ac_func in backtrace getcwd
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_func in backtrace ceilf floorf roundf rintf nearbyintf getcwd
|
|
||||||
do
|
|
||||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
||||||
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
|
|
||||||
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
|
|
||||||
if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
|
|
||||||
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
|
||||||
#define $ac_func innocuous_$ac_func
|
|
||||||
|
|
||||||
/* System header to define __stub macros and hopefully few prototypes,
|
|
||||||
which can conflict with char $ac_func (); below.
|
|
||||||
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
||||||
<limits.h> exists even on freestanding compilers. */
|
|
||||||
|
|
||||||
#ifdef __STDC__
|
|
||||||
# include <limits.h>
|
|
||||||
#else
|
|
||||||
# include <assert.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#undef $ac_func
|
|
||||||
|
|
||||||
/* Override any GCC internal prototype to avoid an error.
|
|
||||||
Use char because int might match the return type of a GCC
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
#endif
|
|
||||||
char $ac_func ();
|
|
||||||
/* The GNU C library defines this for functions which it implements
|
|
||||||
to always fail with ENOSYS. Some functions are actually named
|
|
||||||
something starting with __ and the normal name is an alias. */
|
|
||||||
#if defined __stub_$ac_func || defined __stub___$ac_func
|
|
||||||
choke me
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
return $ac_func ();
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
||||||
if { (ac_try="$ac_link"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_link") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest$ac_exeext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
eval "$as_ac_var=yes"
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
eval "$as_ac_var=no"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext \
|
|
||||||
conftest$ac_exeext conftest.$ac_ext
|
|
||||||
fi
|
|
||||||
ac_res=`eval echo '${'$as_ac_var'}'`
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_res" >&5
|
|
||||||
echo "${ECHO_T}$ac_res" >&6; }
|
|
||||||
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
|
||||||
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_func in powf fmodf strtof round
|
|
||||||
do
|
|
||||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
||||||
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
|
|
||||||
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
|
|
||||||
if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
|
|
||||||
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
|
||||||
#define $ac_func innocuous_$ac_func
|
|
||||||
|
|
||||||
/* System header to define __stub macros and hopefully few prototypes,
|
|
||||||
which can conflict with char $ac_func (); below.
|
|
||||||
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
||||||
<limits.h> exists even on freestanding compilers. */
|
|
||||||
|
|
||||||
#ifdef __STDC__
|
|
||||||
# include <limits.h>
|
|
||||||
#else
|
|
||||||
# include <assert.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#undef $ac_func
|
|
||||||
|
|
||||||
/* Override any GCC internal prototype to avoid an error.
|
|
||||||
Use char because int might match the return type of a GCC
|
|
||||||
builtin and then its argument prototype would still apply. */
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
#endif
|
|
||||||
char $ac_func ();
|
|
||||||
/* The GNU C library defines this for functions which it implements
|
|
||||||
to always fail with ENOSYS. Some functions are actually named
|
|
||||||
something starting with __ and the normal name is an alias. */
|
|
||||||
#if defined __stub_$ac_func || defined __stub___$ac_func
|
|
||||||
choke me
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
return $ac_func ();
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
||||||
if { (ac_try="$ac_link"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_link") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest$ac_exeext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
eval "$as_ac_var=yes"
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
eval "$as_ac_var=no"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext \
|
|
||||||
conftest$ac_exeext conftest.$ac_ext
|
|
||||||
fi
|
|
||||||
ac_res=`eval echo '${'$as_ac_var'}'`
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_res" >&5
|
|
||||||
echo "${ECHO_T}$ac_res" >&6; }
|
|
||||||
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
|
||||||
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_func in log log2 log10 exp exp2
|
|
||||||
do
|
do
|
||||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||||
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
|
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
|
||||||
@ -16802,642 +16570,6 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for isnan in <math.h>" >&5
|
|
||||||
echo $ECHO_N "checking for isnan in <math.h>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_isnan_in_math_h+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <math.h>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; isnan(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_isnan_in_math_h=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_isnan_in_math_h=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_isnan_in_math_h" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_isnan_in_math_h" >&6; }
|
|
||||||
|
|
||||||
|
|
||||||
if test "$ac_cv_func_isnan_in_math_h" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_ISNAN_IN_MATH_H 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for isnan in <cmath>" >&5
|
|
||||||
echo $ECHO_N "checking for isnan in <cmath>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_isnan_in_cmath+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <cmath>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; isnan(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_isnan_in_cmath=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_isnan_in_cmath=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_isnan_in_cmath" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_isnan_in_cmath" >&6; }
|
|
||||||
|
|
||||||
if test "$ac_cv_func_isnan_in_cmath" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_ISNAN_IN_CMATH 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for std::isnan in <cmath>" >&5
|
|
||||||
echo $ECHO_N "checking for std::isnan in <cmath>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_std_isnan_in_cmath+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <cmath>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; std::isnan(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_std_isnan_in_cmath=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_std_isnan_in_cmath=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_std_isnan_in_cmath" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_std_isnan_in_cmath" >&6; }
|
|
||||||
|
|
||||||
if test "$ac_cv_func_std_isnan_in_cmath" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_STD_ISNAN_IN_CMATH 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for isinf in <math.h>" >&5
|
|
||||||
echo $ECHO_N "checking for isinf in <math.h>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_isinf_in_math_h+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <math.h>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; isinf(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_isinf_in_math_h=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_isinf_in_math_h=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_isinf_in_math_h" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_isinf_in_math_h" >&6; }
|
|
||||||
|
|
||||||
if test "$ac_cv_func_isinf_in_math_h" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_ISINF_IN_MATH_H 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for isinf in <cmath>" >&5
|
|
||||||
echo $ECHO_N "checking for isinf in <cmath>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_isinf_in_cmath+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <cmath>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; isinf(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_isinf_in_cmath=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_isinf_in_cmath=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_isinf_in_cmath" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_isinf_in_cmath" >&6; }
|
|
||||||
|
|
||||||
if test "$ac_cv_func_isinf_in_cmath" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_ISINF_IN_CMATH 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for std::isinf in <cmath>" >&5
|
|
||||||
echo $ECHO_N "checking for std::isinf in <cmath>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_std_isinf_in_cmath+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <cmath>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; std::isinf(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_std_isinf_in_cmath=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_std_isinf_in_cmath=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_std_isinf_in_cmath" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_std_isinf_in_cmath" >&6; }
|
|
||||||
|
|
||||||
if test "$ac_cv_func_std_isinf_in_cmath" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_STD_ISINF_IN_CMATH 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
{ echo "$as_me:$LINENO: checking for finite in <ieeefp.h>" >&5
|
|
||||||
echo $ECHO_N "checking for finite in <ieeefp.h>... $ECHO_C" >&6; }
|
|
||||||
if test "${ac_cv_func_finite_in_ieeefp_h+set}" = set; then
|
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
||||||
else
|
|
||||||
|
|
||||||
ac_ext=cpp
|
|
||||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
||||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
||||||
|
|
||||||
cat >conftest.$ac_ext <<_ACEOF
|
|
||||||
/* confdefs.h. */
|
|
||||||
_ACEOF
|
|
||||||
cat confdefs.h >>conftest.$ac_ext
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
#include <ieeefp.h>
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
float f; finite(f);
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
rm -f conftest.$ac_objext
|
|
||||||
if { (ac_try="$ac_compile"
|
|
||||||
case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_compile") 2>conftest.er1
|
|
||||||
ac_status=$?
|
|
||||||
grep -v '^ *+' conftest.er1 >conftest.err
|
|
||||||
rm -f conftest.er1
|
|
||||||
cat conftest.err >&5
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); } &&
|
|
||||||
{ ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; } &&
|
|
||||||
{ ac_try='test -s conftest.$ac_objext'
|
|
||||||
{ (case "(($ac_try" in
|
|
||||||
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
||||||
*) ac_try_echo=$ac_try;;
|
|
||||||
esac
|
|
||||||
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
||||||
(eval "$ac_try") 2>&5
|
|
||||||
ac_status=$?
|
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
||||||
(exit $ac_status); }; }; then
|
|
||||||
ac_cv_func_finite_in_ieeefp_h=yes
|
|
||||||
else
|
|
||||||
echo "$as_me: failed program was:" >&5
|
|
||||||
sed 's/^/| /' conftest.$ac_ext >&5
|
|
||||||
|
|
||||||
ac_cv_func_finite_in_ieeefp_h=no
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
ac_ext=c
|
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_finite_in_ieeefp_h" >&5
|
|
||||||
echo "${ECHO_T}$ac_cv_func_finite_in_ieeefp_h" >&6; }
|
|
||||||
|
|
||||||
if test "$ac_cv_func_finite_in_ieeefp_h" = "yes" ; then
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define HAVE_FINITE_IN_IEEEFP_H 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if test "$llvm_cv_platform_type" = "Unix" ; then
|
if test "$llvm_cv_platform_type" = "Unix" ; then
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,9 +33,6 @@
|
|||||||
/* Define to 1 if you have the `bcopy' function. */
|
/* Define to 1 if you have the `bcopy' function. */
|
||||||
#undef HAVE_BCOPY
|
#undef HAVE_BCOPY
|
||||||
|
|
||||||
/* Define to 1 if you have the `ceilf' function. */
|
|
||||||
#cmakedefine HAVE_CEILF ${HAVE_CEILF}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `closedir' function. */
|
/* Define to 1 if you have the `closedir' function. */
|
||||||
#cmakedefine HAVE_CLOSEDIR ${HAVE_CLOSEDIR}
|
#cmakedefine HAVE_CLOSEDIR ${HAVE_CLOSEDIR}
|
||||||
|
|
||||||
@ -95,33 +92,6 @@
|
|||||||
/* Define to 1 if you have the <ffi.h> header file. */
|
/* Define to 1 if you have the <ffi.h> header file. */
|
||||||
#cmakedefine HAVE_FFI_H ${HAVE_FFI_H}
|
#cmakedefine HAVE_FFI_H ${HAVE_FFI_H}
|
||||||
|
|
||||||
/* Set to 1 if the finite function is found in <ieeefp.h> */
|
|
||||||
#cmakedefine HAVE_FINITE_IN_IEEEFP_H ${HAVE_FINITE_IN_IEEEFP_H}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `floorf' function. */
|
|
||||||
#cmakedefine HAVE_FLOORF ${HAVE_FLOORF}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `log' function. */
|
|
||||||
#cmakedefine HAVE_LOG ${HAVE_LOG}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `log2' function. */
|
|
||||||
#cmakedefine HAVE_LOG2 ${HAVE_LOG2}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `log10' function. */
|
|
||||||
#cmakedefine HAVE_LOG10 ${HAVE_LOG10}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `exp' function. */
|
|
||||||
#cmakedefine HAVE_EXP ${HAVE_EXP}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `exp2' function. */
|
|
||||||
#cmakedefine HAVE_EXP2 ${HAVE_EXP2}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `exp10' function. */
|
|
||||||
#cmakedefine HAVE_EXP10 ${HAVE_EXP10}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `fmodf' function. */
|
|
||||||
#cmakedefine HAVE_FMODF ${HAVE_FMODF}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `futimes' function. */
|
/* Define to 1 if you have the `futimes' function. */
|
||||||
#cmakedefine HAVE_FUTIMES ${HAVE_FUTIMES}
|
#cmakedefine HAVE_FUTIMES ${HAVE_FUTIMES}
|
||||||
|
|
||||||
@ -152,18 +122,6 @@
|
|||||||
/* Define to 1 if you have the `isatty' function. */
|
/* Define to 1 if you have the `isatty' function. */
|
||||||
#cmakedefine HAVE_ISATTY 1
|
#cmakedefine HAVE_ISATTY 1
|
||||||
|
|
||||||
/* Set to 1 if the isinf function is found in <cmath> */
|
|
||||||
#cmakedefine HAVE_ISINF_IN_CMATH ${HAVE_ISINF_IN_CMATH}
|
|
||||||
|
|
||||||
/* Set to 1 if the isinf function is found in <math.h> */
|
|
||||||
#cmakedefine HAVE_ISINF_IN_MATH_H ${HAVE_ISINF_IN_MATH_H}
|
|
||||||
|
|
||||||
/* Set to 1 if the isnan function is found in <cmath> */
|
|
||||||
#cmakedefine HAVE_ISNAN_IN_CMATH ${HAVE_ISNAN_IN_CMATH}
|
|
||||||
|
|
||||||
/* Set to 1 if the isnan function is found in <math.h> */
|
|
||||||
#cmakedefine HAVE_ISNAN_IN_MATH_H ${HAVE_ISNAN_IN_MATH_H}
|
|
||||||
|
|
||||||
/* Define if you have the libdl library or equivalent. */
|
/* Define if you have the libdl library or equivalent. */
|
||||||
#cmakedefine HAVE_LIBDL ${HAVE_LIBDL}
|
#cmakedefine HAVE_LIBDL ${HAVE_LIBDL}
|
||||||
|
|
||||||
@ -247,18 +205,12 @@
|
|||||||
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
||||||
#cmakedefine HAVE_NDIR_H ${HAVE_NDIR_H}
|
#cmakedefine HAVE_NDIR_H ${HAVE_NDIR_H}
|
||||||
|
|
||||||
/* Define to 1 if you have the `nearbyintf' function. */
|
|
||||||
#cmakedefine HAVE_NEARBYINTF ${HAVE_NEARBYINTF}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `opendir' function. */
|
/* Define to 1 if you have the `opendir' function. */
|
||||||
#cmakedefine HAVE_OPENDIR ${HAVE_OPENDIR}
|
#cmakedefine HAVE_OPENDIR ${HAVE_OPENDIR}
|
||||||
|
|
||||||
/* Define to 1 if you have the `posix_spawn' function. */
|
/* Define to 1 if you have the `posix_spawn' function. */
|
||||||
#cmakedefine HAVE_POSIX_SPAWN ${HAVE_POSIX_SPAWN}
|
#cmakedefine HAVE_POSIX_SPAWN ${HAVE_POSIX_SPAWN}
|
||||||
|
|
||||||
/* Define to 1 if you have the `powf' function. */
|
|
||||||
#cmakedefine HAVE_POWF ${HAVE_POWF}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pread' function. */
|
/* Define to 1 if you have the `pread' function. */
|
||||||
#cmakedefine HAVE_PREAD ${HAVE_PREAD}
|
#cmakedefine HAVE_PREAD ${HAVE_PREAD}
|
||||||
|
|
||||||
@ -289,15 +241,6 @@
|
|||||||
/* Define to 1 if you have the `realpath' function. */
|
/* Define to 1 if you have the `realpath' function. */
|
||||||
#cmakedefine HAVE_REALPATH ${HAVE_REALPATH}
|
#cmakedefine HAVE_REALPATH ${HAVE_REALPATH}
|
||||||
|
|
||||||
/* Define to 1 if you have the `rintf' function. */
|
|
||||||
#undef HAVE_RINTF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `round' function. */
|
|
||||||
#cmakedefine HAVE_ROUND ${HAVE_ROUND}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `roundf' function. */
|
|
||||||
#undef HAVE_ROUNDF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sbrk' function. */
|
/* Define to 1 if you have the `sbrk' function. */
|
||||||
#cmakedefine HAVE_SBRK ${HAVE_SBRK}
|
#cmakedefine HAVE_SBRK ${HAVE_SBRK}
|
||||||
|
|
||||||
@ -340,9 +283,6 @@
|
|||||||
/* Define to 1 if you have the `strerror_r' function. */
|
/* Define to 1 if you have the `strerror_r' function. */
|
||||||
#cmakedefine HAVE_STRERROR_R ${HAVE_STRERROR_R}
|
#cmakedefine HAVE_STRERROR_R ${HAVE_STRERROR_R}
|
||||||
|
|
||||||
/* Define to 1 if you have the `strtof' function. */
|
|
||||||
#cmakedefine HAVE_STRTOF ${HAVE_STRTOF}
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `strtoll' function. */
|
/* Define to 1 if you have the `strtoll' function. */
|
||||||
#cmakedefine HAVE_STRTOLL ${HAVE_STRTOLL}
|
#cmakedefine HAVE_STRTOLL ${HAVE_STRTOLL}
|
||||||
|
|
||||||
|
@ -39,9 +39,6 @@
|
|||||||
/* Define to 1 if you have the `backtrace' function. */
|
/* Define to 1 if you have the `backtrace' function. */
|
||||||
#undef HAVE_BACKTRACE
|
#undef HAVE_BACKTRACE
|
||||||
|
|
||||||
/* Define to 1 if you have the `ceilf' function. */
|
|
||||||
#undef HAVE_CEILF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <CrashReporterClient.h> header file. */
|
/* Define to 1 if you have the <CrashReporterClient.h> header file. */
|
||||||
#undef HAVE_CRASHREPORTERCLIENT_H
|
#undef HAVE_CRASHREPORTERCLIENT_H
|
||||||
|
|
||||||
@ -67,9 +64,6 @@
|
|||||||
don't. */
|
don't. */
|
||||||
#undef HAVE_DECL_STRERROR_S
|
#undef HAVE_DECL_STRERROR_S
|
||||||
|
|
||||||
/* Define to 1 if you have the DIA SDK installed, and to 0 if you don't. */
|
|
||||||
#undef HAVE_DIA_SDK
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
||||||
*/
|
*/
|
||||||
#undef HAVE_DIRENT_H
|
#undef HAVE_DIRENT_H
|
||||||
@ -89,12 +83,6 @@
|
|||||||
/* Define to 1 if you have the <execinfo.h> header file. */
|
/* Define to 1 if you have the <execinfo.h> header file. */
|
||||||
#undef HAVE_EXECINFO_H
|
#undef HAVE_EXECINFO_H
|
||||||
|
|
||||||
/* Define to 1 if you have the `exp' function. */
|
|
||||||
#undef HAVE_EXP
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `exp2' function. */
|
|
||||||
#undef HAVE_EXP2
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||||
#undef HAVE_FCNTL_H
|
#undef HAVE_FCNTL_H
|
||||||
|
|
||||||
@ -110,15 +98,6 @@
|
|||||||
/* Define to 1 if you have the <ffi.h> header file. */
|
/* Define to 1 if you have the <ffi.h> header file. */
|
||||||
#undef HAVE_FFI_H
|
#undef HAVE_FFI_H
|
||||||
|
|
||||||
/* Set to 1 if the finite function is found in <ieeefp.h> */
|
|
||||||
#undef HAVE_FINITE_IN_IEEEFP_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `floorf' function. */
|
|
||||||
#undef HAVE_FLOORF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `fmodf' function. */
|
|
||||||
#undef HAVE_FMODF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `futimens' function. */
|
/* Define to 1 if you have the `futimens' function. */
|
||||||
#undef HAVE_FUTIMENS
|
#undef HAVE_FUTIMENS
|
||||||
|
|
||||||
@ -149,18 +128,6 @@
|
|||||||
/* Define to 1 if you have the `isatty' function. */
|
/* Define to 1 if you have the `isatty' function. */
|
||||||
#undef HAVE_ISATTY
|
#undef HAVE_ISATTY
|
||||||
|
|
||||||
/* Set to 1 if the isinf function is found in <cmath> */
|
|
||||||
#undef HAVE_ISINF_IN_CMATH
|
|
||||||
|
|
||||||
/* Set to 1 if the isinf function is found in <math.h> */
|
|
||||||
#undef HAVE_ISINF_IN_MATH_H
|
|
||||||
|
|
||||||
/* Set to 1 if the isnan function is found in <cmath> */
|
|
||||||
#undef HAVE_ISNAN_IN_CMATH
|
|
||||||
|
|
||||||
/* Set to 1 if the isnan function is found in <math.h> */
|
|
||||||
#undef HAVE_ISNAN_IN_MATH_H
|
|
||||||
|
|
||||||
/* Define if libedit is available on this platform. */
|
/* Define if libedit is available on this platform. */
|
||||||
#undef HAVE_LIBEDIT
|
#undef HAVE_LIBEDIT
|
||||||
|
|
||||||
@ -192,15 +159,6 @@
|
|||||||
the current directory to the dynamic linker search path. */
|
the current directory to the dynamic linker search path. */
|
||||||
#undef HAVE_LINK_R
|
#undef HAVE_LINK_R
|
||||||
|
|
||||||
/* Define to 1 if you have the `log' function. */
|
|
||||||
#undef HAVE_LOG
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `log10' function. */
|
|
||||||
#undef HAVE_LOG10
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `log2' function. */
|
|
||||||
#undef HAVE_LOG2
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `longjmp' function. */
|
/* Define to 1 if you have the `longjmp' function. */
|
||||||
#undef HAVE_LONGJMP
|
#undef HAVE_LONGJMP
|
||||||
|
|
||||||
@ -210,9 +168,6 @@
|
|||||||
/* Define if mallinfo() is available on this platform. */
|
/* Define if mallinfo() is available on this platform. */
|
||||||
#undef HAVE_MALLINFO
|
#undef HAVE_MALLINFO
|
||||||
|
|
||||||
/* Define if mallctl() is available on this plaform. */
|
|
||||||
#undef HAVE_MALLCTL
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <malloc.h> header file. */
|
/* Define to 1 if you have the <malloc.h> header file. */
|
||||||
#undef HAVE_MALLOC_H
|
#undef HAVE_MALLOC_H
|
||||||
|
|
||||||
@ -247,15 +202,9 @@
|
|||||||
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
||||||
#undef HAVE_NDIR_H
|
#undef HAVE_NDIR_H
|
||||||
|
|
||||||
/* Define to 1 if you have the `nearbyintf' function. */
|
|
||||||
#undef HAVE_NEARBYINTF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `posix_spawn' function. */
|
/* Define to 1 if you have the `posix_spawn' function. */
|
||||||
#undef HAVE_POSIX_SPAWN
|
#undef HAVE_POSIX_SPAWN
|
||||||
|
|
||||||
/* Define to 1 if you have the `powf' function. */
|
|
||||||
#undef HAVE_POWF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pread' function. */
|
/* Define to 1 if you have the `pread' function. */
|
||||||
#undef HAVE_PREAD
|
#undef HAVE_PREAD
|
||||||
|
|
||||||
@ -280,15 +229,6 @@
|
|||||||
/* Define to 1 if you have the `realpath' function. */
|
/* Define to 1 if you have the `realpath' function. */
|
||||||
#undef HAVE_REALPATH
|
#undef HAVE_REALPATH
|
||||||
|
|
||||||
/* Define to 1 if you have the `rintf' function. */
|
|
||||||
#undef HAVE_RINTF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `round' function. */
|
|
||||||
#undef HAVE_ROUND
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `roundf' function. */
|
|
||||||
#undef HAVE_ROUNDF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sbrk' function. */
|
/* Define to 1 if you have the `sbrk' function. */
|
||||||
#undef HAVE_SBRK
|
#undef HAVE_SBRK
|
||||||
|
|
||||||
@ -319,12 +259,6 @@
|
|||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
#undef HAVE_STDLIB_H
|
#undef HAVE_STDLIB_H
|
||||||
|
|
||||||
/* Set to 1 if the std::isinf function is found in <cmath> */
|
|
||||||
#undef HAVE_STD_ISINF_IN_CMATH
|
|
||||||
|
|
||||||
/* Set to 1 if the std::isnan function is found in <cmath> */
|
|
||||||
#undef HAVE_STD_ISNAN_IN_CMATH
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `strerror' function. */
|
/* Define to 1 if you have the `strerror' function. */
|
||||||
#undef HAVE_STRERROR
|
#undef HAVE_STRERROR
|
||||||
|
|
||||||
@ -337,9 +271,6 @@
|
|||||||
/* Define to 1 if you have the <string.h> header file. */
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
#undef HAVE_STRING_H
|
#undef HAVE_STRING_H
|
||||||
|
|
||||||
/* Define to 1 if you have the `strtof' function. */
|
|
||||||
#undef HAVE_STRTOF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `strtoll' function. */
|
/* Define to 1 if you have the `strtoll' function. */
|
||||||
#undef HAVE_STRTOLL
|
#undef HAVE_STRTOLL
|
||||||
|
|
||||||
|
@ -534,14 +534,6 @@ inline uint32_t FloatToBits(float Float) {
|
|||||||
return T.I;
|
return T.I;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Platform-independent wrappers for the C99 isnan() function.
|
|
||||||
int IsNAN(float f);
|
|
||||||
int IsNAN(double d);
|
|
||||||
|
|
||||||
/// Platform-independent wrappers for the C99 isinf() function.
|
|
||||||
int IsInf(float f);
|
|
||||||
int IsInf(double d);
|
|
||||||
|
|
||||||
/// MinAlign - A and B are either alignments or offsets. Return the minimum
|
/// MinAlign - A and B are either alignments or offsets. Return the minimum
|
||||||
/// alignment that may be assumed after adding the two together.
|
/// alignment that may be assumed after adding the two together.
|
||||||
inline uint64_t MinAlign(uint64_t A, uint64_t B) {
|
inline uint64_t MinAlign(uint64_t A, uint64_t B) {
|
||||||
|
@ -1451,26 +1451,16 @@ static Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID,
|
|||||||
default: break;
|
default: break;
|
||||||
case Intrinsic::fabs:
|
case Intrinsic::fabs:
|
||||||
return ConstantFoldFP(fabs, V, Ty);
|
return ConstantFoldFP(fabs, V, Ty);
|
||||||
#if HAVE_LOG2
|
|
||||||
case Intrinsic::log2:
|
case Intrinsic::log2:
|
||||||
return ConstantFoldFP(log2, V, Ty);
|
return ConstantFoldFP(log2, V, Ty);
|
||||||
#endif
|
|
||||||
#if HAVE_LOG
|
|
||||||
case Intrinsic::log:
|
case Intrinsic::log:
|
||||||
return ConstantFoldFP(log, V, Ty);
|
return ConstantFoldFP(log, V, Ty);
|
||||||
#endif
|
|
||||||
#if HAVE_LOG10
|
|
||||||
case Intrinsic::log10:
|
case Intrinsic::log10:
|
||||||
return ConstantFoldFP(log10, V, Ty);
|
return ConstantFoldFP(log10, V, Ty);
|
||||||
#endif
|
|
||||||
#if HAVE_EXP
|
|
||||||
case Intrinsic::exp:
|
case Intrinsic::exp:
|
||||||
return ConstantFoldFP(exp, V, Ty);
|
return ConstantFoldFP(exp, V, Ty);
|
||||||
#endif
|
|
||||||
#if HAVE_EXP2
|
|
||||||
case Intrinsic::exp2:
|
case Intrinsic::exp2:
|
||||||
return ConstantFoldFP(exp2, V, Ty);
|
return ConstantFoldFP(exp2, V, Ty);
|
||||||
#endif
|
|
||||||
case Intrinsic::floor:
|
case Intrinsic::floor:
|
||||||
return ConstantFoldFP(floor, V, Ty);
|
return ConstantFoldFP(floor, V, Ty);
|
||||||
case Intrinsic::ceil:
|
case Intrinsic::ceil:
|
||||||
|
@ -1310,13 +1310,8 @@ APInt APInt::sqrt() const {
|
|||||||
// libc sqrt function which will probably use a hardware sqrt computation.
|
// libc sqrt function which will probably use a hardware sqrt computation.
|
||||||
// This should be faster than the algorithm below.
|
// This should be faster than the algorithm below.
|
||||||
if (magnitude < 52) {
|
if (magnitude < 52) {
|
||||||
#if HAVE_ROUND
|
|
||||||
return APInt(BitWidth,
|
return APInt(BitWidth,
|
||||||
uint64_t(::round(::sqrt(double(isSingleWord()?VAL:pVal[0])))));
|
uint64_t(::round(::sqrt(double(isSingleWord()?VAL:pVal[0])))));
|
||||||
#else
|
|
||||||
return APInt(BitWidth,
|
|
||||||
uint64_t(::sqrt(double(isSingleWord()?VAL:pVal[0])) + 0.5));
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Okay, all the short cuts are exhausted. We must compute it. The following
|
// Okay, all the short cuts are exhausted. We must compute it. The following
|
||||||
|
@ -58,8 +58,6 @@ add_llvm_library(LLVMSupport
|
|||||||
IntEqClasses.cpp
|
IntEqClasses.cpp
|
||||||
IntervalMap.cpp
|
IntervalMap.cpp
|
||||||
IntrusiveRefCntPtr.cpp
|
IntrusiveRefCntPtr.cpp
|
||||||
IsInf.cpp
|
|
||||||
IsNAN.cpp
|
|
||||||
LEB128.cpp
|
LEB128.cpp
|
||||||
LineIterator.cpp
|
LineIterator.cpp
|
||||||
Locale.cpp
|
Locale.cpp
|
||||||
|
@ -1,49 +0,0 @@
|
|||||||
//===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
|
|
||||||
//
|
|
||||||
// The LLVM Compiler Infrastructure
|
|
||||||
//
|
|
||||||
// This file is distributed under the University of Illinois Open Source
|
|
||||||
// License. See LICENSE.TXT for details.
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
//
|
|
||||||
// Platform-independent wrapper around C99 isinf()
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
|
|
||||||
#include "llvm/Config/config.h"
|
|
||||||
|
|
||||||
#if HAVE_ISINF_IN_MATH_H
|
|
||||||
# include <math.h>
|
|
||||||
#elif HAVE_ISINF_IN_CMATH
|
|
||||||
# include <cmath>
|
|
||||||
#elif HAVE_STD_ISINF_IN_CMATH
|
|
||||||
# include <cmath>
|
|
||||||
using std::isinf;
|
|
||||||
#elif HAVE_FINITE_IN_IEEEFP_H
|
|
||||||
// A handy workaround I found at http://www.unixguide.net/sun/faq ...
|
|
||||||
// apparently this has been a problem with Solaris for years.
|
|
||||||
# include <ieeefp.h>
|
|
||||||
static int isinf(double x) { return !finite(x) && x==x; }
|
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
#include <float.h>
|
|
||||||
#define isinf(X) (!_finite(X))
|
|
||||||
#elif defined(_AIX) && defined(__GNUC__)
|
|
||||||
// GCC's fixincludes seems to be removing the isinf() declaration from the
|
|
||||||
// system header /usr/include/math.h
|
|
||||||
# include <math.h>
|
|
||||||
static int isinf(double x) { return !finite(x) && x==x; }
|
|
||||||
#elif defined(__hpux)
|
|
||||||
// HP-UX is "special"
|
|
||||||
#include <math.h>
|
|
||||||
static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
|
|
||||||
#else
|
|
||||||
# error "Don't know how to get isinf()"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace llvm {
|
|
||||||
|
|
||||||
int IsInf(float f) { return isinf(f); }
|
|
||||||
int IsInf(double d) { return isinf(d); }
|
|
||||||
|
|
||||||
} // end namespace llvm;
|
|
@ -1,33 +0,0 @@
|
|||||||
//===-- IsNAN.cpp ---------------------------------------------------------===//
|
|
||||||
//
|
|
||||||
// The LLVM Compiler Infrastructure
|
|
||||||
//
|
|
||||||
// This file is distributed under the University of Illinois Open Source
|
|
||||||
// License. See LICENSE.TXT for details.
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
//
|
|
||||||
// Platform-independent wrapper around C99 isnan().
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
|
|
||||||
#include "llvm/Config/config.h"
|
|
||||||
|
|
||||||
#if HAVE_ISNAN_IN_MATH_H
|
|
||||||
# include <math.h>
|
|
||||||
#elif HAVE_ISNAN_IN_CMATH
|
|
||||||
# include <cmath>
|
|
||||||
#elif HAVE_STD_ISNAN_IN_CMATH
|
|
||||||
# include <cmath>
|
|
||||||
using std::isnan;
|
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
#include <float.h>
|
|
||||||
#define isnan _isnan
|
|
||||||
#else
|
|
||||||
# error "Don't know how to get isnan()"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace llvm {
|
|
||||||
int IsNAN(float f) { return isnan(f); }
|
|
||||||
int IsNAN(double d) { return isnan(d); }
|
|
||||||
} // end namespace llvm;
|
|
@ -13,6 +13,7 @@
|
|||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
#include <cmath>
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
@ -1305,13 +1306,13 @@ TEST(APFloatTest, roundToIntegral) {
|
|||||||
EXPECT_EQ(-0.0, P.convertToDouble());
|
EXPECT_EQ(-0.0, P.convertToDouble());
|
||||||
P = APFloat::getNaN(APFloat::IEEEdouble);
|
P = APFloat::getNaN(APFloat::IEEEdouble);
|
||||||
P.roundToIntegral(APFloat::rmTowardZero);
|
P.roundToIntegral(APFloat::rmTowardZero);
|
||||||
EXPECT_TRUE(IsNAN(P.convertToDouble()));
|
EXPECT_TRUE(std::isnan(P.convertToDouble()));
|
||||||
P = APFloat::getInf(APFloat::IEEEdouble);
|
P = APFloat::getInf(APFloat::IEEEdouble);
|
||||||
P.roundToIntegral(APFloat::rmTowardZero);
|
P.roundToIntegral(APFloat::rmTowardZero);
|
||||||
EXPECT_TRUE(IsInf(P.convertToDouble()) && P.convertToDouble() > 0.0);
|
EXPECT_TRUE(std::isinf(P.convertToDouble()) && P.convertToDouble() > 0.0);
|
||||||
P = APFloat::getInf(APFloat::IEEEdouble, true);
|
P = APFloat::getInf(APFloat::IEEEdouble, true);
|
||||||
P.roundToIntegral(APFloat::rmTowardZero);
|
P.roundToIntegral(APFloat::rmTowardZero);
|
||||||
EXPECT_TRUE(IsInf(P.convertToDouble()) && P.convertToDouble() < 0.0);
|
EXPECT_TRUE(std::isinf(P.convertToDouble()) && P.convertToDouble() < 0.0);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user