util: Disable Werror for BLAKE3

Avoid treating warnings as errors in the third-party BLAKE3 code.

Suggested-by: @eric

Signed-off-by: Valentine Burley <valentine.burley@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35853>
This commit is contained in:
Valentine Burley 2025-08-14 10:46:07 +02:00 committed by Marge Bot
parent 8d2bb19c63
commit ee56aed92d

View file

@ -42,7 +42,7 @@ endif
blake3 = static_library(
'blake3',
files_blake3,
c_args : blake3_defs,
c_args : blake3_defs + cc.get_supported_arguments('-Wno-error'),
gnu_symbol_visibility : 'hidden',
build_by_default : false,
)