diff --git a/third_party/mbedtls/mbedtls.gni b/third_party/mbedtls/mbedtls.gni index 84513a631c854a..7397a3ec0f31bb 100644 --- a/third_party/mbedtls/mbedtls.gni +++ b/third_party/mbedtls/mbedtls.gni @@ -31,7 +31,10 @@ template("mbedtls_target") { ] if (is_clang) { - cflags += [ "-Wno-shorten-64-to-32" ] + cflags += [ + "-Wno-shorten-64-to-32", + "-Wno-unused-but-set-variable", # bignum.c: variable 't' set but not used + ] } }