You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
mbedtls: Disable ASM when compiling with LLVM MemorySanitizer (MSAN)
This commit is contained in:
@@ -56,6 +56,14 @@
|
|||||||
#undef MBEDTLS_AESCE_C
|
#undef MBEDTLS_AESCE_C
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__has_feature)
|
||||||
|
#if __has_feature(memory_sanitizer)
|
||||||
|
// MemorySanitizer is incompatible with ASM.
|
||||||
|
#undef MBEDTLS_HAVE_ASM
|
||||||
|
#undef MBEDTLS_AESNI_C
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Disable deprecated
|
// Disable deprecated
|
||||||
#define MBEDTLS_DEPRECATED_REMOVED
|
#define MBEDTLS_DEPRECATED_REMOVED
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user