summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-04-12 17:40:16 -0700
committerKhem Raj <raj.khem@gmail.com>2022-04-13 19:21:41 -0700
commit026be53fba23e4b66f3338ba5f62bc3ebef0ef18 (patch)
tree1a198640e104940d5ada7674f0d8dfc5faa04c7a
parent83b283c5282cfef7e5b6339852cf126bacb82bd3 (diff)
downloadmeta-openembedded-026be53fba23e4b66f3338ba5f62bc3ebef0ef18.tar.gz
boost-sml: Disable examples
They fail to build with gcc 12 Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/boost-sml/boost-sml_git.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/boost-sml/boost-sml_git.bb b/meta-oe/recipes-support/boost-sml/boost-sml_git.bb
index 97c04899bf..e22eddb72d 100644
--- a/meta-oe/recipes-support/boost-sml/boost-sml_git.bb
+++ b/meta-oe/recipes-support/boost-sml/boost-sml_git.bb
@@ -19,7 +19,8 @@ S = "${WORKDIR}/git"
19inherit cmake 19inherit cmake
20 20
21# Building benchmarks takes a lot of time and requires additional headers (euml2.hpp) 21# Building benchmarks takes a lot of time and requires additional headers (euml2.hpp)
22EXTRA_OECMAKE:append = " -DSML_BUILD_BENCHMARKS:bool=OFF" 22# Building examples fail with gcc-12
23EXTRA_OECMAKE:append = " -DSML_BUILD_BENCHMARKS:bool=OFF -DSML_BUILD_EXAMPLES=OFF"
23 24
24# [boost::ext].XML is a header only C++ library, so the main package will be empty. 25# [boost::ext].XML is a header only C++ library, so the main package will be empty.
25ALLOW_EMPTY:${PN} = "1" 26ALLOW_EMPTY:${PN} = "1"