Merge pull request #91356 from akien-mga/mbedtls-linux-arm32-disable-aesce

mbedtls: Disable AESCE on Linux ARM32, doesn't compile on our target arch
This commit is contained in:
Rémi Verschelde 2024-04-30 11:15:43 +02:00 committed by GitHub
commit 64520fe674
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,8 +49,10 @@
#undef MBEDTLS_DES_C
#undef MBEDTLS_DHM_C
#ifndef __linux__
#if !(defined(__linux__) && defined(__aarch64__))
// ARMv8 hardware AES operations. Detection only possible on linux.
// May technically be supported on some ARM32 arches but doesn't seem
// to be in our current Linux SDK's neon-fp-armv8.
#undef MBEDTLS_AESCE_C
#endif