From 178a52005111c971b46f8c7d6ffca2ffa5092e8e Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 12 Aug 2020 16:02:04 -0700 Subject: python3-pandas: Add workaround to fix build with clang This is a bug introduced by cython [1] the workaround suppressed the additional warnings seen with clang [2] [1] https://github.com/cython/cython/issues/3474 [2] https://github.com/pandas-dev/pandas/issues/33239 Signed-off-by: Khem Raj Acked-by: Trevor Gamblin --- meta-python/recipes-devtools/python/python3-pandas_1.1.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.0.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.0.bb index f100677caa..7d65287cb0 100644 --- a/meta-python/recipes-devtools/python/python3-pandas_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.0.bb @@ -15,6 +15,8 @@ DEPENDS += " \ ${PYTHON_PN}-numpy-native ${PYTHON_PN}-cython-native \ " +CFLAGS_append_toolchain-clang = " -Wno-error=deprecated-declarations" + RDEPENDS_${PN} += " \ ${PYTHON_PN}-json \ ${PYTHON_PN}-numpy \ -- cgit 1.2.3-korg