Browse Source

Force LITTLE_ENDIAN detection on x86 and x86_64

This is a sad workaround for CompCert 2.6
next
Frank Denis 8 years ago
parent
commit
f4cc8aeb48
  1. 4
      configure.ac

4
configure.ac

@ -404,6 +404,10 @@ AC_CHECK_HEADERS([sys/mman.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AS_CASE([$host_cpu],
[i*86 | x86_64],
[ac_cv_c_bigendian=no]
)
AC_C_BIGENDIAN(
AC_DEFINE(NATIVE_BIG_ENDIAN, 1, [machine is bigendian]),
AC_DEFINE(NATIVE_LITTLE_ENDIAN, 1, [machine is littleendian]),

Loading…
Cancel
Save