[Numpy-svn] r4292 - branches/numpy.scons/numpy/distutils/scons
numpy-svn at scipy.org
numpy-svn at scipy.org
Thu Oct 25 07:21:34 EDT 2007
Author: cdavid
Date: 2007-10-25 06:21:26 -0500 (Thu, 25 Oct 2007)
New Revision: 4292
Modified:
branches/numpy.scons/numpy/distutils/scons/custom_checkers.py
Log:
More fixes CheckCBLAS for accelerate framework on mac os X
Modified: branches/numpy.scons/numpy/distutils/scons/custom_checkers.py
===================================================================
--- branches/numpy.scons/numpy/distutils/scons/custom_checkers.py 2007-10-25 11:19:43 UTC (rev 4291)
+++ branches/numpy.scons/numpy/distutils/scons/custom_checkers.py 2007-10-25 11:21:26 UTC (rev 4292)
@@ -101,6 +101,7 @@
cblas_src, libs, libpath, [], [])
def CheckCBLAS(context):
+ cflags = []
linkflags = []
libs = []
headers = []
@@ -129,4 +130,4 @@
libs.append('cblas')
return _check_include_and_run(context, 'CBLAS', [], headers, cblas_src,
- libs, [], linkflags, [])
+ libs, [], linkflags, cflags)
More information about the Numpy-svn
mailing list