Enable arm64 for non-Windows targets (thanks, pastdue!).

Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
This commit is contained in:
Ryan C. Gordon 2021-01-18 18:33:00 -05:00
parent 55c3d9f9d8
commit 009be5ab20
1 changed files with 3 additions and 0 deletions

View File

@ -506,6 +506,7 @@ MY_CPU_LE_UNALIGN means that CPU is LITTLE ENDIAN and CPU supports unaligned mem
#endif
#if defined(MY_CPU_AMD64) \
|| defined(_M_ARM64) \
|| defined(_M_IA64) \
|| defined(__AARCH64EL__) \
|| defined(__AARCH64EB__)
@ -531,6 +532,8 @@ MY_CPU_LE_UNALIGN means that CPU is LITTLE ENDIAN and CPU supports unaligned mem
#if defined(_WIN32) && defined(_M_ARM)
#define MY_CPU_ARM_LE
#elif defined(_WIN64) && defined(_M_ARM64)
#define MY_CPU_ARM_LE
#endif
#if defined(_WIN32) && defined(_M_IA64)