andreas pushed a commit to branch core-packages-team
in repository guix.
commit 29e2857480c651029765745eb53ad0645ffa699c
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Jan 5 18:00:44 2025 +0100
gnu: python-h5py: Fix build with gcc-14.
* gnu/packages/python-xyz.scm (python-h5py)[arguments]: Add phase
"relax-gcc-14-strictness".
Change-Id: Ib68eb41305d075069926323727fe35ca65fd2873
---
gnu/packages/python-xyz.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6140c332a9..08f1391275 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3914,7 +3914,14 @@ library.")
(when tests?
(setenv "H5PY_TEST_CHECK_FILTERS" "1")
(with-directory-excursion (site-packages inputs outputs)
- (invoke "pytest" "-vv"))))))))
+ (invoke "pytest" "-vv")))))
+ (add-before 'build 'relax-gcc-14-strictness
+ (lambda _
+ (setenv
+ "CFLAGS"
+ (string-append
+ "-g -O2"
+ `" -Wno-error=incompatible-pointer-types")))))))
(propagated-inputs (list python-six python-numpy))
(inputs (list hdf5))
(native-inputs