[sundials] fix cmake argument generation for '+magma' (#33858)

[dealii] force cmake to accept Scalapack settings from Spack
This commit is contained in:
Veselin Dobrev
2022-11-13 07:50:57 -08:00
committed by GitHub
parent 3d811617e6
commit a5d35c3077
2 changed files with 5 additions and 2 deletions

View File

@@ -591,6 +591,9 @@ def cmake_args(self):
self.define("SCALAPACK_FOUND", True),
self.define("SCALAPACK_INCLUDE_DIRS", spec["scalapack"].prefix.include),
self.define("SCALAPACK_LIBRARIES", scalapack_libs.joined(";")),
# If SCALAPACK_LIBRARY is not set, deal.II still searches
# for SCALAPACK despite the above settings:
self.define("SCALAPACK_LIBRARY", scalapack_libs.joined(";")),
]
)