Fix undefined symbols by building shared libraries

This commit is contained in:
Adam J. Stewart
2016-07-20 12:57:43 -05:00
parent bdb64c2e39
commit 5cac0a528c
5 changed files with 21 additions and 20 deletions

View File

@@ -44,7 +44,8 @@ def install(self, spec, prefix):
config_args = [
'--prefix={0}'.format(prefix),
'--with-blas={0}'.format(spec['blas'].prefix.lib),
'--with-lapack={0}'.format(spec['lapack'].prefix.lib)
'--with-lapack={0}'.format(spec['lapack'].prefix.lib),
'--enable-shared'
]
configure(*config_args)