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):
|
def install(self, spec, prefix):
|
||||||
cmake_args = [
|
cmake_args = [
|
||||||
# ARPACK support
|
# ARPACK support
|
||||||
'-DARPACK_LIBRARY={0}/libarpack.so'.format(
|
'-DARPACK_LIBRARY={0}/libarpack.{1}'.format(
|
||||||
spec['arpack-ng'].prefix.lib),
|
spec['arpack-ng'].prefix.lib, dso_suffix),
|
||||||
# BLAS support
|
# BLAS support
|
||||||
'-DBLAS_LIBRARY={0}'.format(spec['blas'].blas_shared_lib),
|
'-DBLAS_LIBRARY={0}'.format(spec['blas'].blas_shared_lib),
|
||||||
# LAPACK support
|
# LAPACK support
|
||||||
|
|
Loading…
Reference in a new issue