[Cython] Fixed specification of the Accelerate framework on OS X

This commit is contained in:
Ray Speth 2013-02-07 23:40:28 +00:00
parent 463a4017eb
commit 1bdf50625d

View file

@ -88,6 +88,11 @@ else:
localenv['py_extra_compiler_args'] = repr(['-fprofile-arcs', '-ftest-coverage'])
localenv['py_extra_link_args'] = repr(['-fprofile-arcs', '-ftest-coverage'])
if 'LDFLAGS' not in localenv['ENV']:
localenv['ENV']['LDFLAGS'] = ''
for framework in localenv['FRAMEWORKS']:
localenv['ENV']['LDFLAGS'] += ' -framework ' + framework
dataFiles = localenv.RecursiveInstall('#interfaces/cython/cantera/data',
'#build/data')
build(dataFiles)