portage: fix lapack/blas linkage (#13558)
This commit is contained in:
parent
0f3ffad430
commit
dd7ebcf2d9
1 changed files with 5 additions and 0 deletions
|
@ -51,6 +51,11 @@ def cmake_args(self):
|
|||
else:
|
||||
options.append('-DENABLE_MPI=OFF')
|
||||
|
||||
options.append('-DBLA_VENDOR=' + self.spec['blas'].name.upper())
|
||||
options.append('-DBLAS_LIBRARIES=' + self.spec['blas'].libs.joined())
|
||||
options.append('-DLAPACK_LIBRARIES=' +
|
||||
self.spec['lapack'].libs.joined())
|
||||
|
||||
options.append("-DLAPACKE_LIBRARY=" +
|
||||
self.spec["lapack"].libs.joined(";"))
|
||||
|
||||
|
|
Loading…
Reference in a new issue