diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-26 23:10:26 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-27 21:37:16 +0100 |
| commit | f00ebc2d5ec41e7d849a93e76b063a022ec66483 (patch) | |
| tree | ca25655e0e2a1d0f2589cdbb611375e80b3cf902 /gnu/packages/python-xyz.scm | |
| parent | 7ca5588e58d9a7dd06b07066593a8c4b0d3e9fd6 (diff) | |
gnu: python-zeroc-ice-3.6: Fix build with gcc-14.
* gnu/packages/python-xyz.scm (python-zeroc-ice-3.6)[arguments]
<phases>: Add 'relax-gcc-14-strictness.
Change-Id: I205e103f6e8e5856a10fb716fec3831b555ab3cf
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4031cc8b8d..03d5097058 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -40217,7 +40217,15 @@ interfaces.") "0mikjfvq26kh8asnn9v55z41pap4c5ypymqnwwi4xkavc3mzyda2")) (patches (search-patches - "python-zeroc-ice-3.6.5-python-3.11-support.patch")))))) + "python-zeroc-ice-3.6.5-python-3.11-support.patch")))) + (arguments + (substitute-keyword-arguments (package-arguments python-zeroc-ice) + ((#:phases phases #~%standard-phases) + #~(modify-phases #$phases + (add-before 'build 'relax-gcc-14-strictness + (lambda _ + (setenv "CFLAGS" + "-g -O2 -Wno-error=implicit-function-declaration"))))))))) (define-public python-islenska (package |
