summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2024-10-28 09:57:09 +0100
committerArmin Kuster <akuster808@gmail.com>2024-12-08 14:38:16 -0500
commit07dcc9149b00714384a032d1ff9c97ee73672480 (patch)
treebcd2f6a9cf13e05e6337b233daa18af462c892e1
parenta8a325756ad84454f5fdd5c0e064b45ebc586cb4 (diff)
downloadmeta-openembedded-07dcc9149b00714384a032d1ff9c97ee73672480.tar.gz
python3-lxml: ignore incompatible-pointer-types issues in native build
* to allow building native version on hosts with gcc-14 * it's properly fixed in 5.0.2 version sent to oe-core/scarthgap in: https://lists.openembedded.org/g/openembedded-core/message/206391 but for kirkstone we can just demote the issue back to warning * fixes: https://bugs.launchpad.net/lxml/+bug/2045435 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb b/meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb
index 0c78d97abd..afb76d8c54 100644
--- a/meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb
@@ -41,3 +41,5 @@ BBCLASSEXTEND = "native nativesdk"
41RDEPENDS:${PN} += "libxml2 libxslt ${PYTHON_PN}-compression" 41RDEPENDS:${PN} += "libxml2 libxslt ${PYTHON_PN}-compression"
42 42
43CLEANBROKEN = "1" 43CLEANBROKEN = "1"
44
45BUILD_CFLAGS += "-Wno-error=incompatible-pointer-types"