1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-23 12:05:11 -07:00

Visual Studio: define __ARM_NEON on Windows/ARM

This commit is contained in:
Frank Denis 2023-09-11 00:58:53 +02:00
parent 08070591be
commit 9db77385d0

View File

@ -252,9 +252,10 @@ xor_buf(unsigned char *out, const unsigned char *in, size_t n)
# elif defined(_M_ARM64)
# ifdef __ARM_NEON
# define HAVE_ARMCRYPTO 1
# ifndef __ARM_NEON
# define __ARM_NEON 1
# endif
# define HAVE_ARMCRYPTO 1
# endif /* _MSC_VER */