mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Make the huge_val test run a C++ program not C
llvm-svn: 31422
This commit is contained in:
parent
7628decccf
commit
45c30d6827
@ -4,15 +4,15 @@
|
|||||||
#
|
#
|
||||||
AC_DEFUN([AC_HUGE_VAL_CHECK],[
|
AC_DEFUN([AC_HUGE_VAL_CHECK],[
|
||||||
AC_CACHE_CHECK([for HUGE_VAL sanity], [ac_cv_huge_val_sanity],[
|
AC_CACHE_CHECK([for HUGE_VAL sanity], [ac_cv_huge_val_sanity],[
|
||||||
AC_LANG_PUSH(C)
|
AC_LANG_PUSH([C++])
|
||||||
CPPFLAGS=-pedantic
|
CXXFLAGS=-pedantic
|
||||||
AC_RUN_IFELSE(
|
AC_RUN_IFELSE(
|
||||||
AC_LANG_PROGRAM(
|
AC_LANG_PROGRAM(
|
||||||
[#include <math.h>],
|
[#include <math.h>],
|
||||||
[double x = HUGE_VAL; return x != x; ]),
|
[double x = HUGE_VAL; return x != x; ]),
|
||||||
[ac_cv_huge_val_sanity=yes],[ac_cv_huge_val_sanity=no],
|
[ac_cv_huge_val_sanity=yes],[ac_cv_huge_val_sanity=no],
|
||||||
[ac_cv_huge_val_sanity=yes])
|
[ac_cv_huge_val_sanity=yes])
|
||||||
AC_LANG_POP(C)
|
AC_LANG_POP([C++])
|
||||||
])
|
])
|
||||||
AC_SUBST(HUGE_VAL_SANITY,$ac_cv_huge_val_sanity)
|
AC_SUBST(HUGE_VAL_SANITY,$ac_cv_huge_val_sanity)
|
||||||
])
|
])
|
||||||
|
12
configure
vendored
12
configure
vendored
@ -29183,13 +29183,13 @@ if test "${ac_cv_huge_val_sanity+set}" = set; then
|
|||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
else
|
else
|
||||||
|
|
||||||
ac_ext=c
|
ac_ext=cpp
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
ac_cpp='$CXXCPP $CPPFLAGS'
|
||||||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
||||||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
||||||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
||||||
|
|
||||||
CPPFLAGS=-pedantic
|
CXXFLAGS=-pedantic
|
||||||
if test "$cross_compiling" = yes; then
|
if test "$cross_compiling" = yes; then
|
||||||
ac_cv_huge_val_sanity=yes
|
ac_cv_huge_val_sanity=yes
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user