diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-01-04 19:37:11 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:25 +0200 |
| commit | b57e655bbc89daad59d3fb481f90ce5561c3df37 (patch) | |
| tree | 59d27d78ba69ab346c2bac8d1d327351deee0aa0 /gnu/packages/python-xyz.scm | |
| parent | 216991afbd642218a3adb1149f41377b09c67442 (diff) | |
gnu: python-cython-next: Build with gcc-13.
Using gcc-14 produces
Compiler output for module e_switch_transform:
e_switch_transform.c: In function ‘__pyx_pf_18e_switch_transform_is_not_one’:
e_switch_transform.c:2283:5: error: duplicate case value
2283 | case 1+0:
| ^~~~
e_switch_transform.c:2282:5: note: previously used here
2282 | case 1:
| ^~~~
* gnu/packages/python-xyz.scm (python-cython-3)[native-inputs]: Add gcc-13.
Change-Id: Iaed502e4c105bb1229345288ec2f203453f65acc
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8abaf7ecd6..cca15c5097 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10043,7 +10043,8 @@ writing C extensions for Python as easy as Python itself.") (when tests? (apply invoke "python" "runtests.py" test-flags))))))) (native-inputs - (list libxcrypt + (list gcc-13 ;does not compile with gcc-14 + libxcrypt python-setuptools python-wheel)) (properties '()))) |
