diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2024-04-11 12:16:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-11 12:17:30 +0200 |
commit | cd96573b73e53bf53c0efad965f925f106259764 (patch) | |
tree | 001c91474d40e4062714bfcc9c33c887eb147412 /gnu/packages | |
parent | 68202bcc439dd4ec2a5c839b35a0631f27eb0a90 (diff) | |
download | guix-cd96573b73e53bf53c0efad965f925f106259764.tar guix-cd96573b73e53bf53c0efad965f925f106259764.tar.gz |
gnu: superlu-dist: Fix linking with the ParMETIS shim of pt-scotch.
* gnu/packages/maths.scm (superlu-dist)[arguments]: Adjust library names
to match current ‘scotch’.
Change-Id: If64094c058cc3be58435fe1c47cc99fb0a9e1fff
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/maths.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 92a9600e09..cc42ce7902 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4458,8 +4458,8 @@ void mc64ad_dist (int *a, int *b, int *c, int *d, int *e, double *f, int *g, "-DTPL_LAPACK_LIBRARIES=-lopenblas" (string-append "-DTPL_PARMETIS_LIBRARIES=" (string-join - '("ptscotchparmetis" "ptscotch" "ptscotcherr" - "scotchmetis" "scotch" "scotcherr") + '("ptscotchparmetisv3" "ptscotcherr" + "scotchmetisv3" "scotcherr") ";")) (string-append "-DTPL_PARMETIS_INCLUDE_DIRS=" (assoc-ref %build-inputs "parmetis") |