diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-30 10:40:32 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-30 10:40:32 +0200 |
commit | 13b42d9755bfcbfe912db299442ce614a558b58a (patch) | |
tree | 3ec09b23ecb00027663bcfea85fc5862d7a97af9 /thirdparty | |
parent | 89850d553eeb259e208d0c577cd7bc1eabd3a90a (diff) | |
download | redot-engine-13b42d9755bfcbfe912db299442ce614a558b58a.tar.gz |
mbedtls: Disable AESCE on Linux ARM32, doesn't compile on our target arch
Our current Linux SDK for ARM32 from https://github.com/godotengine/buildroot
targets a relatively conservative baseline of neon-fp-armv8, and (at least based
on build issues I got) this doesn't seem to include hardware AES support.
Fixes #91352.
Diffstat (limited to 'thirdparty')
-rw-r--r-- | thirdparty/mbedtls/include/godot_module_mbedtls_config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/thirdparty/mbedtls/include/godot_module_mbedtls_config.h b/thirdparty/mbedtls/include/godot_module_mbedtls_config.h index aed276766f..2011827b7a 100644 --- a/thirdparty/mbedtls/include/godot_module_mbedtls_config.h +++ b/thirdparty/mbedtls/include/godot_module_mbedtls_config.h @@ -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 |