diff options
author | Nathan Moinvaziri <nathan@solidstatenetworks.com> | 2019-09-03 23:35:23 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2019-09-04 08:35:23 +0200 |
commit | ce0076688a7eff8c7991234f5024386cf9ac944c (patch) | |
tree | 16d6c508306eeb1e803bf468f7dbc72389ae1c81 /zendian.h | |
parent | 743def4c93635b7914534353b0dc0fd828f6dbfe (diff) |
Changes to support compilation with MSVC ARM & ARM64 (#386)
* Merge aarch64 and arm cmake sections.
* Updated MSVC compiler support for ARM and ARM64.
* Moved detection for -mfpu=neon to where the flag is set to simplify add_intrinsics_option.
* Only add ${ACLEFLAG} on aarch64 if not WITH_NEON.
* Rename arch/x86/ctzl.h to fallback_builtins.h.
Diffstat (limited to 'zendian.h')
-rw-r--r-- | zendian.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ #elif defined(WIN32) || defined(_WIN32) # define LITTLE_ENDIAN 1234 # define BIG_ENDIAN 4321 -# if defined(_M_IX86) || defined(_M_AMD64) || defined(_M_IA64) || defined (_M_ARM) +# if defined(_M_IX86) || defined(_M_AMD64) || defined(_M_IA64) || defined (_M_ARM) || defined (_M_ARM64) # define BYTE_ORDER LITTLE_ENDIAN # else # error Unknown endianness! |