summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"