From 1e1fa8ecf8372dc5d12a4ac330a300db77f2da45 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 17 Jan 2019 15:53:23 +0100 Subject: [PATCH] [waf] always try to detect blas --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index a37b628d..71ea095c 100644 --- a/wscript +++ b/wscript @@ -99,10 +99,10 @@ def options(ctx): add_option_enable_disable(ctx, 'apple-audio', default = None, help_str = 'use CoreFoundation (darwin only) (auto)', help_disable_str = 'do not use CoreFoundation framework') - add_option_enable_disable(ctx, 'blas', default = False, + add_option_enable_disable(ctx, 'blas', default = None, help_str = 'use BLAS acceleration library (no)', help_disable_str = 'do not use BLAS library') - add_option_enable_disable(ctx, 'atlas', default = False, + add_option_enable_disable(ctx, 'atlas', default = None, help_str = 'use ATLAS acceleration library (no)', help_disable_str = 'do not use ATLAS library') add_option_enable_disable(ctx, 'wavread', default = True, -- 2.11.0