feat(Core/Deps): add macOS ARM support (#14761)

* closes https://github.com/azerothcore/azerothcore-wotlk/issues/3720
This commit is contained in:
Charlton Lau
2023-01-28 19:16:35 +09:00
committed by GitHub
parent 3d0fa25fb8
commit 160641b968
2 changed files with 10118 additions and 1 deletions

View File

@@ -20,12 +20,17 @@
#include "blake2-impl.h"
#if defined(__x86_64__) || defined(_M_X64) || defined(_M_AMD64)
#include <emmintrin.h>
#elif defined(__aarch64__) || defined(_M_ARM64)
#include "sse2neon.h"
#endif
#if defined(__SSSE3__)
#include <tmmintrin.h> /* for _mm_shuffle_epi8 and _mm_alignr_epi8 */
#endif
#if defined(__XOP__) && (defined(__GNUC__) || defined(__clang__))
#if defined(__x86_64__) && defined(__XOP__) && (defined(__GNUC__) || defined(__clang__))
#include <x86intrin.h>
#endif

10112
deps/argon2/argon2/blake2/sse2neon.h vendored Normal file

File diff suppressed because it is too large Load Diff