Fix shared object suffix for macOS
This commit is contained in:
parent
afa4cdc2d8
commit
8034536054
1 changed files with 2 additions and 2 deletions
|
@ -48,8 +48,8 @@ class Armadillo(Package):
|
|||
def install(self, spec, prefix):
|
||||
cmake_args = [
|
||||
# ARPACK support
|
||||
'-DARPACK_LIBRARY={0}/libarpack.so'.format(
|
||||
spec['arpack-ng'].prefix.lib),
|
||||
'-DARPACK_LIBRARY={0}/libarpack.{1}'.format(
|
||||
spec['arpack-ng'].prefix.lib, dso_suffix),
|
||||
# BLAS support
|
||||
'-DBLAS_LIBRARY={0}'.format(spec['blas'].blas_shared_lib),
|
||||
# LAPACK support
|
||||
|
|
Loading…
Reference in a new issue