configure.ac 463 B

12345678910111213
  1. GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
  2. # Local configure fragment for sysdeps/nios2.
  3. # Nios II big endian is not yet supported.
  4. AC_CACHE_CHECK([for big endian],
  5. [libc_cv_nios2_be],
  6. [AC_EGREP_CPP(yes,[#ifdef __nios2_big_endian__
  7. yes
  8. #endif
  9. ], libc_cv_nios2_be=yes, libc_cv_nios2_be=no)])
  10. if test $libc_cv_nios2_be = yes; then
  11. AC_MSG_ERROR([Big endian not supported for Nios II])
  12. fi