This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit 88e4d45a59dae381c4f13892b192c27d731d12b9
Author: Michal Gorecki <[email protected]>
AuthorDate: Tue Feb 20 10:12:25 2024 +0100

    crypto/mbedtls: Suppress unknown warning options for clang
    
    -Wno-maybe-uninitialized flag is not supported by clang.
    This suppresses warning related to this.
---
 crypto/mbedtls/pkg.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/mbedtls/pkg.yml b/crypto/mbedtls/pkg.yml
index acfdf2561..f1f6b4977 100644
--- a/crypto/mbedtls/pkg.yml
+++ b/crypto/mbedtls/pkg.yml
@@ -29,6 +29,7 @@ pkg.type: sdk
 pkg.cflags:
     - '-DMBEDTLS_USER_CONFIG_FILE=<mbedtls/config_mynewt.h>'
     - -Wno-maybe-uninitialized
+    - -Wno-unknown-warning-option
 pkg.cflags.TEST: -DTEST
 
 pkg.include_dirs:

Reply via email to