From 386d33c02a1aca0f694edb7255ff2c40e1e35f49 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 3 Mar 2021 23:29:51 -0800 Subject: abseil-cpp: Ask for C++14 std explicitly Newer gcc ( gcc11 ) will be defaulting to c++17 and abseil currently needs work to get working with c++17, so pin to c++14 untill upstream gets it working with c++17 Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_git.bb b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_git.bb index 38c3dbc510..9557c9345e 100644 --- a/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_git.bb +++ b/meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_git.bb @@ -24,6 +24,7 @@ inherit cmake EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON \ -DBUILD_TESTING=OFF \ + -DCMAKE_CXX_STANDARD=14 \ " BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg