From 4c77cf827cdd3f292bf711c0c0f6cb43e314bcbf Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 17 Aug 2020 17:50:22 -0700 Subject: [PATCH] directfb: Disable dtor-typedef warning with clang11 Fixes build src/core/Renderer.cpp:2021:21: error: destructor cannot be declared using a typedef 'DirectFB::Renderer::Throttle' (aka 'DirectFB::Throttle') of the class name [-Wdtor-typedef] Renderer::Throttle::~Throttle() ^ Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/directfb/directfb.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-graphics/directfb/directfb.inc b/meta-oe/recipes-graphics/directfb/directfb.inc index 65fd89e6fe..f7dc668433 100644 --- a/meta-oe/recipes-graphics/directfb/directfb.inc +++ b/meta-oe/recipes-graphics/directfb/directfb.inc @@ -28,6 +28,8 @@ S = "${WORKDIR}/DirectFB-${PV}" LDFLAGS_append = " -lm" +CXXFLAGS_append_toolchain-clang = " -Wno-error=dtor-typedef" + # Workaround for linking issues seen with armv7a + gold LDFLAGS_append_arm = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd ', '', d)}"