From 86a3e4c8c331773156283d365aa6a9b103ca44ff Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Sun, 24 Jul 2022 18:12:25 +0200 Subject: Add support for Memory sanitizer (#1652) --- src/lib/third_party/src/gcrypt/aesni.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/third_party/src/gcrypt/aesni.c b/src/lib/third_party/src/gcrypt/aesni.c index f20b0051c..db5c92eb6 100644 --- a/src/lib/third_party/src/gcrypt/aesni.c +++ b/src/lib/third_party/src/gcrypt/aesni.c @@ -25,7 +25,10 @@ #if defined(__has_feature) #if __has_feature(memory_sanitizer) -#warning "MBEDTLS_AESNI_C is known to cause spurious error reports with some memory sanitizers as they do not understand the assembly code." +/* Using "#pragma message" instead of "#warning" to allow compilation with -Werror. + This pragma directive should be supported from every compilers supporting also memory sanitizer +*/ +#pragma message "MBEDTLS_AESNI_C is known to cause spurious error reports with some memory sanitizers as they do not understand the assembly code." #endif #endif -- cgit v1.2.3