diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/third_party/src/gcrypt/aesni.c | 5 |
1 files changed, 4 insertions, 1 deletions
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 |