We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd69860 commit d5cf52dCopy full SHA for d5cf52d
api/c/SConstruct
@@ -48,6 +48,9 @@ if fftw:
48
rpc = env.get('HAVE_RPC')
49
if rpc:
50
env.Prepend(CPPDEFINES=['SF_HAS_RPC'])
51
+
52
+if env['PLATFORM'] == 'darwin':
53
+ env.Prepend(CPPDEFINES=['ACCELERATE_NEW_LAPACK'])
54
55
sobjs = []
56
api/python/SConstruct
@@ -82,7 +82,7 @@ if env.get('SWIG') and env.get('NUMPY'):
82
LDMODULEPREFIX='_c_',
83
LDMODULESUFFIX=ldmsuffix,
84
FRAMEWORKSFLAGS='-flat_namespace '
85
- '-undefined suppress')
+ '-undefined dynamic_lookup')
86
87
pfiles = [python,wrap[1],module+'.py']
88
env.Install('../../lib',pfiles)
0 commit comments