Fixed a bug in SConstruct with using system BLAS and LAPACK
This commit is contained in:
parent
1618de5a24
commit
bd2bc32689
1 changed files with 2 additions and 1 deletions
|
|
@ -681,7 +681,8 @@ if env['blas_lapack_libs'] == '':
|
|||
env['BUILD_BLAS_LAPACK'] = True
|
||||
env['blas_lapack_libs'] = ['ctlapack', 'ctblas']
|
||||
else:
|
||||
ens['blas_lapack_libs'] = ','.split(env['blas_lapack_libs'])
|
||||
env['blas_lapack_libs'] = env['blas_lapack_libs'].split(',')
|
||||
env['BUILD_BLAS_LAPACK'] = False
|
||||
|
||||
# Directories where things will be after actually being installed
|
||||
# These variables are the ones that are used to populate header files,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue