aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-08-17 17:50:22 -0700
committerKhem Raj <raj.khem@gmail.com>2020-08-17 17:52:09 -0700
commit4c77cf827cdd3f292bf711c0c0f6cb43e314bcbf (patch)
tree491028f945615c2f11e2ce047da3614a6b412875
parent302a6c447456113255a4ec705aa4a17f404beb58 (diff)
downloadmeta-openembedded-4c77cf827cdd3f292bf711c0c0f6cb43e314bcbf.tar.gz
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 <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-graphics/directfb/directfb.inc2
1 files changed, 2 insertions, 0 deletions
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)}"