~ruther/guix-local

e743bf77e5642a183a230559f86bf188208debb1 — Liliana Marie Prikler 10 months ago 59027f2
gnu: python-cython-next: Fix build on i686.

* gnu/packages/python-xyz.scm (python-cython-3)[native-inputs]: Use gcc-11
when target-x86-32?
1 files changed, 8 insertions(+), 4 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +8 -4
@@ 10050,10 10050,14 @@ writing C extensions for Python as easy as Python itself.")
              (when tests?
                (apply invoke "python" "runtests.py" test-flags)))))))
    (native-inputs
     (list gcc-13                       ;does not compile with gcc-14
           libxcrypt
           python-setuptools
           python-wheel))
     ;; does not compile with gcc-14
     (list
      (cond
       ((target-x86-32?) gcc-11)
       (else gcc-13))
      libxcrypt
      python-setuptools
      python-wheel))
    (properties '())))

;; NOTE: when upgrading numpy please make sure that python-numba,