mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-30 00:46:22 -04:00
exclude arm64ec mode for aesni
AESNI does not work correctly for msvc arm64ec Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
parent
bdd96b9adf
commit
35b59d7805
@ -37,7 +37,8 @@
|
|||||||
*/
|
*/
|
||||||
#if !defined(MBEDTLS_HAVE_X86_64) && \
|
#if !defined(MBEDTLS_HAVE_X86_64) && \
|
||||||
(defined(__amd64__) || defined(__x86_64__) || \
|
(defined(__amd64__) || defined(__x86_64__) || \
|
||||||
defined(_M_X64) || defined(_M_AMD64))
|
defined(_M_X64) || defined(_M_AMD64)) && \
|
||||||
|
!defined(_M_ARM64EC)
|
||||||
#define MBEDTLS_HAVE_X86_64
|
#define MBEDTLS_HAVE_X86_64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user