diff options
author | Luca Cirrottola <luca.cirro@gmail.com> | 2025-07-22 11:20:29 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-22 14:52:02 +0200 |
commit | 1187787c6fbf65cf2bfbc8860ba4ab154a0e3f94 (patch) | |
tree | 617f22a2ea7244e53fd78366313a234f70efd3fc | |
parent | aec49cb5137eed0f34f8c804eb25d3bbc112331d (diff) |
gnu: papi: Compile with gcc-13 (since it breaks with gcc-14).
* gnu/packages/profiling.scm (papi)[native-inputs]: Add gcc-13,
replace gfortran by gfortran-13.
Change-Id: Ief66c727ebe56cb1af959ffa84dc9a65c9f924d9
-rw-r--r-- | gnu/packages/profiling.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/profiling.scm b/gnu/packages/profiling.scm index c4cfb04fd7..d1043d9b7c 100644 --- a/gnu/packages/profiling.scm +++ b/gnu/packages/profiling.scm @@ -88,7 +88,8 @@ `(,infiniband-diags "lib") net-tools)) (native-inputs - (list gfortran)) + (list gcc-13 + gfortran-13)) (arguments (list #:tests? #f ;no check target #:configure-flags |