configure.ac 533 B

123456789101112131415
  1. GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
  2. # Local configure fragment for sysdeps/mips.
  3. dnl No MIPS GCC supports accessing static and hidden symbols in an
  4. dnl position independent way.
  5. dnl AC_DEFINE(PI_STATIC_AND_HIDDEN)
  6. AC_CACHE_CHECK([whether the compiler is using the 2008 NaN encoding],
  7. libc_cv_mips_nan2008, [AC_EGREP_CPP(yes, [dnl
  8. #ifdef __mips_nan2008
  9. yes
  10. #endif], libc_cv_mips_nan2008=yes, libc_cv_mips_nan2008=no)])
  11. if test x$libc_cv_mips_nan2008 = xyes; then
  12. AC_DEFINE(HAVE_MIPS_NAN2008)
  13. fi