From 6f3ded8f27a60a7e8d99d1ba600f05d6a2755716 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 17 Jan 2023 23:21:26 -0800 Subject: [PATCH] ssiapi: Use c++14 standard It depends on std::auto_ptr which is gone with c++17 therefore pin to c++14 until auto_ptr is replaced with something else e.g. unique_ptr Signed-off-by: Khem Raj --- meta-oe/recipes-support/ssiapi/ssiapi_1.3.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-support/ssiapi/ssiapi_1.3.0.bb b/meta-oe/recipes-support/ssiapi/ssiapi_1.3.0.bb index 13ed7570b1..bf9de31f84 100644 --- a/meta-oe/recipes-support/ssiapi/ssiapi_1.3.0.bb +++ b/meta-oe/recipes-support/ssiapi/ssiapi_1.3.0.bb @@ -29,6 +29,8 @@ S ="${WORKDIR}/${BPN}.${PV}" inherit autotools +CXXFLAGS += "-std=gnu++14" + do_configure:prepend(){ ${S}/autogen.sh }