From 2cf9c7955c6739cafb57f5b8749f12e44f912d6e Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Fri, 13 Jul 2018 15:51:04 -0500 Subject: Scotch: fix compilation of 6.0.5a (#8704) Prevent this error: metis_graph_part.c:301:7: error: non-void function 'METIS_PartGraphVKway' should return a value [-Wreturn-type] --- .../builtin/packages/scotch/libscotchmetis-return-6.0.5a.patch | 10 ++++++++++ var/spack/repos/builtin/packages/scotch/package.py | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 var/spack/repos/builtin/packages/scotch/libscotchmetis-return-6.0.5a.patch (limited to 'var') diff --git a/var/spack/repos/builtin/packages/scotch/libscotchmetis-return-6.0.5a.patch b/var/spack/repos/builtin/packages/scotch/libscotchmetis-return-6.0.5a.patch new file mode 100644 index 0000000000..7e124c6aac --- /dev/null +++ b/var/spack/repos/builtin/packages/scotch/libscotchmetis-return-6.0.5a.patch @@ -0,0 +1,10 @@ +--- a/src/libscotchmetis/metis_graph_part.c 2018-07-13 14:25:50.000000000 -0500 ++++ b/src/libscotchmetis/metis_graph_part.c 2018-07-13 14:21:08.000000000 -0500 +@@ -298,7 +298,7 @@ + + edgenbr = xadj[vertnbr] - baseval; + if ((edlotax = memAlloc (edgenbr * sizeof (SCOTCH_Num))) == NULL) +- return; ++ return (METIS_ERROR); + edlotax -= baseval; /* Base access to edlotax */ + vsiztax = vsize2 - baseval; diff --git a/var/spack/repos/builtin/packages/scotch/package.py b/var/spack/repos/builtin/packages/scotch/package.py index 2e550bf2a7..5ff5491bba 100644 --- a/var/spack/repos/builtin/packages/scotch/package.py +++ b/var/spack/repos/builtin/packages/scotch/package.py @@ -63,6 +63,8 @@ class Scotch(Package): patch('esmumps-ldflags-6.0.4.patch', when='@6.0.4') patch('metis-headers-6.0.4.patch', when='@6.0.4') + patch('libscotchmetis-return-6.0.5a.patch', when='@6.0.5a') + # NOTE: In cross-compiling environment parallel build # produces weird linker errors. parallel = False -- cgit v1.2.3-60-g2f50