fix attempt at making -framework Accelerate arguments work correctly

This commit is contained in:
Paul Davis 2014-07-15 10:42:10 -04:00
parent d6f2b9561a
commit 97a99f545f
1 changed files with 1 additions and 1 deletions

View File

@ -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'])
conf.env.append_value('LINKFLAGS_OSX', ['-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: