Fixed a problem linking to BLAS/LAPACK libraries not on the system path

This commit is contained in:
Ray Speth 2012-05-29 21:22:27 +00:00
parent 64bb2bc667
commit 54f18a4e95

View file

@ -702,6 +702,9 @@ if env['boost_inc_dir']:
if env['boost_lib_dir']:
env.Append(LIBPATH=env['boost_lib_dir'])
if env['blas_lapack_dir']:
env.Append(LIBPATH=env['blas_lapack_dir'])
if (env['use_sundials'] == 'default' and
(env['sundials_include'] or env['sundials_libdir'])):
env['use_sundials'] = 'y'