summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2025-02-04 18:32:22 +0100
committerArmin Kuster <akuster808@gmail.com>2025-02-09 07:58:24 -0800
commit068379172d52f1f119bfb8eecdc77494898ea504 (patch)
tree6fbb488954a38e06c6b7d392228709a3c3b96066
parent7ef8a69d903e4a609afeffde1e9d83ecd87e860a (diff)
downloadmeta-openembedded-068379172d52f1f119bfb8eecdc77494898ea504.tar.gz
python3-h5py: add -Wno-error to allow building native with gcc-14 on host
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-h5py_3.6.0.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb b/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb
index 64abe73cba..df57bfd884 100644
--- a/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb
@@ -29,3 +29,7 @@ RDEPENDS:${PN} = "python3-numpy \
29 " 29 "
30 30
31export HDF5_VERSION="1.8.21" 31export HDF5_VERSION="1.8.21"
32
33# h5py/_errors.c:2115:64: error: passing argument 3 of ?H5Ewalk2? from incompatible pointer type [-Wincompatible-pointer-types]
34# h5py/_errors.c:2365:66: error: passing argument 3 of ?H5Ewalk2? from incompatible pointer type [-Wincompatible-pointer-types]
35BUILD_CFLAGS += "-Wno-error=incompatible-pointer-types"