diff options
author | Denis Davydov <davydden@gmail.com> | 2016-03-20 09:25:02 +0100 |
---|---|---|
committer | Denis Davydov <davydden@gmail.com> | 2016-03-20 09:27:07 +0100 |
commit | 95ad2875b6bb4dc15eb43b44c1dbdd521c843119 (patch) | |
tree | 7a45ee49af664d38c0916159952016ff192d560b | |
parent | 179ed7cce642040f07ad94140b1e3cf6867b6936 (diff) | |
download | spack-95ad2875b6bb4dc15eb43b44c1dbdd521c843119.tar.gz spack-95ad2875b6bb4dc15eb43b44c1dbdd521c843119.tar.bz2 spack-95ad2875b6bb4dc15eb43b44c1dbdd521c843119.tar.xz spack-95ad2875b6bb4dc15eb43b44c1dbdd521c843119.zip |
fix scalapack suffix for osx
-rw-r--r-- | var/spack/repos/builtin/packages/netlib-scalapack/package.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/netlib-scalapack/package.py b/var/spack/repos/builtin/packages/netlib-scalapack/package.py index 22d538560e..a5b6eedafb 100644 --- a/var/spack/repos/builtin/packages/netlib-scalapack/package.py +++ b/var/spack/repos/builtin/packages/netlib-scalapack/package.py @@ -1,8 +1,9 @@ from spack import * +import sys class NetlibScalapack(Package): """ScaLAPACK is a library of high-performance linear algebra routines for parallel distributed memory machines""" - + homepage = "http://www.netlib.org/scalapack/" url = "http://www.netlib.org/scalapack/scalapack-2.0.2.tgz" @@ -32,17 +33,17 @@ class NetlibScalapack(Package): "-DCMAKE_C_FLAGS=-fPIC", "-DCMAKE_Fortran_FLAGS=-fPIC" ]) - + options.extend(std_cmake_args) - + with working_dir('spack-build', create=True): cmake('..', *options) make() make("install") def setup_dependent_environment(self, module, spec, dependent_spec): - # TODO treat OS that are not Linux... - lib_suffix = '.so' if '+shared' in spec['scalapack'] else '.a' + lib_dsuffix = '.dylib' if sys.platform == 'darwin' else '.so' + lib_suffix = lib_dsuffix if '+shared' in spec['scalapack'] else '.a' spec['scalapack'].fc_link = '-L%s -lscalapack' % spec['scalapack'].prefix.lib spec['scalapack'].cc_link = spec['scalapack'].fc_link |