Commit f9727320 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

include: Add ARM64 endianness.

parent 77ae1d0f
...@@ -36,7 +36,7 @@ extern "C" { ...@@ -36,7 +36,7 @@ extern "C" {
* 64-bit. * 64-bit.
*/ */
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64) #if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__) || defined(__aarch64__)) && !defined(_WIN64)
#define _WIN64 #define _WIN64
#endif #endif
...@@ -297,6 +297,14 @@ typedef ULONG_PTR KAFFINITY, *PKAFFINITY; ...@@ -297,6 +297,14 @@ typedef ULONG_PTR KAFFINITY, *PKAFFINITY;
# undef WORDS_BIGENDIAN # undef WORDS_BIGENDIAN
# undef BITFIELDS_BIGENDIAN # undef BITFIELDS_BIGENDIAN
# undef ALLOW_UNALIGNED_ACCESS # undef ALLOW_UNALIGNED_ACCESS
#elif defined(__AARCH64EB__)
# define WORDS_BIGENDIAN
# define BITFIELDS_BIGENDIAN
# undef ALLOW_UNALIGNED_ACCESS
#elif defined(__AARCH64EL__) || defined(__aarch64__)
# undef WORDS_BIGENDIAN
# undef BITFIELDS_BIGENDIAN
# undef ALLOW_UNALIGNED_ACCESS
#elif defined(__MIPSEB__) #elif defined(__MIPSEB__)
# define WORDS_BIGENDIAN # define WORDS_BIGENDIAN
# define BITFIELDS_BIGENDIAN # define BITFIELDS_BIGENDIAN
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment