From 1ccdb819590c69335e5d7a5afbf797bd2e7f7629 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 17 Jan 2023 23:30:20 -0800 Subject: [PATCH] log4cpp: Keep using std=c++14 It still needs auto_ptr which is pre c++17 | ../../log4cpp/include/log4cpp/BufferingAppender.hh:21:81: error: no template named 'auto_ptr' in namespace 'std' Signed-off-by: Khem Raj --- meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb index d9a55dd761..8e6d455174 100644 --- a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb +++ b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.3.bb @@ -19,3 +19,5 @@ EXTRA_OECONF = "\ --enable-html-docs=no \ --enable-latex-docs=no \ " + +CXXFLAGS += "-std=c++14"