| Message ID | 20241028095622.1650502-1-martin.jansa@gmail.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-oe,kirkstone] python3-lxml: ignore incompatible-pointer-types issues in native build | expand |
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" RDEPENDS:${PN} += "libxml2 libxslt ${PYTHON_PN}-compression" CLEANBROKEN = "1" + +BUILD_CFLAGS += "-Wno-error=incompatible-pointer-types"
* 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> --- meta-python/recipes-devtools/python/python3-lxml_4.8.0.bb | 2 ++ 1 file changed, 2 insertions(+)