diff options
| author | Jake Forster <jakecameron.forster@gmail.com> | 2025-07-24 21:35:53 +0930 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 14:07:37 +0100 |
| commit | 55ef7ba13d737ba3a87bf816c6b80f907fda0cb3 (patch) | |
| tree | 65cb10d1ab8af8a4b5a55fec96c4f3795f3679e3 /gnu/packages/image-processing.scm | |
| parent | eadf133bb0361855e1f3f25055a1addad0d32394 (diff) | |
gnu: insight-toolkit: Use gcc@13 to fix build.
ITK with Python wrapping fails to build with gcc@14: constexpr function's
return type '__castxml_Float32' (aka '__castxml_Float32_s') is not a literal
type
* gnu/packages/image-processing.scm (insight-toolkit)[native-inputs]: Add
gcc-13.
Change-Id: I9d7286a26840ede45a9543b4dbf195548cb59245
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/image-processing.scm')
| -rw-r--r-- | gnu/packages/image-processing.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index a88e5c2170a..632c00ac823 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -1331,7 +1331,7 @@ libraries designed for computer vision research and implementation.") vxl-1 zlib)) (native-inputs - (list castxml git-minimal pkg-config swig-next which)) + (list castxml gcc-13 git-minimal pkg-config swig-next which)) ;; The 'CMake/ITKSetStandardCompilerFlags.cmake' file normally sets ;; '-mtune=native -march=corei7', suggesting there's something to be |
