From 55fb277facc9a2ec0cbf92beb026ff9095e40f64 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 24 Jul 2016 11:34:59 +0200 Subject: [PATCH] wscript: add optional cblas on linux --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index c671653..f2d72e2 100644 --- a/wscript +++ b/wscript @@ -33,6 +33,7 @@ def configure(conf): local_vamp_lib = local_vamp_lib_amd64 elif platform.machine() == 'x86_64': local_vamp_lib = local_vamp_lib_i686 + conf.check(lib='cblas', uselib_store='CBLAS', mandatory=False) elif sys.platform == 'darwin': local_vamp_lib = local_vamp_lib_osx elif sys.platform == 'win32': @@ -101,7 +102,7 @@ def build(bld): includes = '.', target = 'vamp-aubio', name = 'vamp-aubio', - use = ['VAMP', 'AUBIO'], + use = ['VAMP', 'AUBIO', 'CBLAS'], features = 'cxx cxxshlib', install_path = install_path ) -- 2.11.0