1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-14 22:07:05 +01:00

Fixing endian on linux I hope

This commit is contained in:
Peter Boyle
2015-04-23 07:51:15 +01:00
parent b32c14b433
commit 47292de769
2 changed files with 15 additions and 10 deletions

View File

@ -17,6 +17,7 @@ AC_PROG_RANLIB
AC_CHECK_HEADERS(stdint.h)
AC_CHECK_HEADERS(malloc/malloc.h)
AC_CHECK_HEADERS(malloc.h)
AC_CHECK_HEADERS(endian.h)
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
@ -25,8 +26,6 @@ AC_TYPE_UINT64_T
# Checks for library functions.
AC_CHECK_FUNCS([gettimeofday])
AC_CHECK_FUNCS([ntohll])
AC_CHECK_FUNCS([be64toh])
AC_ARG_ENABLE([simd],[AC_HELP_STRING([--enable-simd=SSE|AVX|AVX2|AVX512],[Select instructions])],[ac_SIMD=${enable_simd}],[ac_SIMD=AVX2])