From 54f18a4e95c667e33bf51f619444001d3adcdaec Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 29 May 2012 21:22:27 +0000 Subject: [PATCH] Fixed a problem linking to BLAS/LAPACK libraries not on the system path --- SConstruct | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SConstruct b/SConstruct index 685b1294d..21c660148 100644 --- a/SConstruct +++ b/SConstruct @@ -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'