From d6f2b9561a56a1e6f50cd98f96c63def56f31982 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 15 Jul 2014 10:19:16 -0400 Subject: [PATCH] fix argument list for -framework Accelerate on OS X (arguments were fused into a single string) --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index c08e1b73c7..e53f933b70 100644 --- a/wscript +++ b/wscript @@ -259,7 +259,7 @@ def set_compiler_flags (conf,opt): if conf.env['FPU_OPTIMIZATION']: if sys.platform == 'darwin': compiler_flags.append("-DBUILD_VECLIB_OPTIMIZATIONS"); - linker_flags.append("-framework Accelerate") + linker_flags.append(['-framework', 'Accelerate']) elif conf.env['build_target'] == 'i686' or conf.env['build_target'] == 'x86_64': compiler_flags.append ("-DBUILD_SSE_OPTIMIZATIONS") if not build_host_supports_sse: