summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYogesh Tyagi <yogesh.tyagi@intel.com>2026-06-01 17:33:52 +0800
committerYogesh Tyagi <yogesh.tyagi@intel.com>2026-06-01 17:33:52 +0800
commit48d3c89ecfa2d95e4e7f70a97a897c768b4e1689 (patch)
treefb801c68337134db50ed5632332519e655bd9097
parent55e0ff278f7040dff5e453c509357820e8ce4c9b (diff)
downloadmeta-intel-48d3c89ecfa2d95e4e7f70a97a897c768b4e1689.tar.gz
recipes-support: intel-crypto-mb: avoid Werror failure on SM4
Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
-rw-r--r--recipes-support/crypto/intel-crypto-mb_2021.12.1.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-support/crypto/intel-crypto-mb_2021.12.1.bb b/recipes-support/crypto/intel-crypto-mb_2021.12.1.bb
index 2b3fcca7..c0436bab 100644
--- a/recipes-support/crypto/intel-crypto-mb_2021.12.1.bb
+++ b/recipes-support/crypto/intel-crypto-mb_2021.12.1.bb
@@ -26,3 +26,7 @@ COMPATIBLE_HOST = '(x86_64).*-linux'
26 26
27EXTRA_OECMAKE += " -DARCH=intel64" 27EXTRA_OECMAKE += " -DARCH=intel64"
28EXTRA_OECMAKE += " -DTOOLCHAIN_OPTIONS='${TOOLCHAIN_OPTIONS}'" 28EXTRA_OECMAKE += " -DTOOLCHAIN_OPTIONS='${TOOLCHAIN_OPTIONS}'"
29
30# Upstream sources in this release trigger a GCC unused-but-set-variable warning
31# in SM4 code paths; keep the build strict while avoiding this known false-positive.
32TOOLCHAIN_OPTIONS:append = " -Wno-error=unused-but-set-variable"