[Numpy-svn] r4404 - branches/numpy.scons/numpy/distutils/scons/checkers

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Nov 6 04:24:05 EST 2007


Author: cdavid
Date: 2007-11-06 03:24:01 -0600 (Tue, 06 Nov 2007)
New Revision: 4404

Modified:
   branches/numpy.scons/numpy/distutils/scons/checkers/custom_checkers.py
Log:
More trivial correction for CBLAS checker

Modified: branches/numpy.scons/numpy/distutils/scons/checkers/custom_checkers.py
===================================================================
--- branches/numpy.scons/numpy/distutils/scons/checkers/custom_checkers.py	2007-11-06 09:21:52 UTC (rev 4403)
+++ branches/numpy.scons/numpy/distutils/scons/checkers/custom_checkers.py	2007-11-06 09:24:01 UTC (rev 4404)
@@ -50,7 +50,7 @@
             st, res = CheckAccelerate(context, autoadd)
             if st:
                 st = check_include_and_run(context, 'CBLAS (Accelerate Framework)', 
-                                           res.cfgopts, ['Accelerate/Accelerate.h'], cblas_src, autoadd)
+                                           res.cfgopts, [], cblas_src, autoadd)
                 if st:
                     add_info(env, 'cblas', res)
                 return st
@@ -58,7 +58,7 @@
             st, res = CheckVeclib(context, autoadd)
             if st:
                 st = check_include_and_run(context, 'CBLAS (vecLib Framework)', 
-                                           res.cfgopts, ['vecLib/vecLib.h'], cblas_src, autoadd)
+                                           res.cfgopts, [], cblas_src, autoadd)
                 if st:
                     add_info(env, 'cblas', res)
                 return st
@@ -72,7 +72,7 @@
             st, res = CheckMKL(context, autoadd)
             if st:
                 st = check_include_and_run(context, 'CBLAS (MKL)', res.cfgopts,
-                                           ['mkl.h'], cblas_src, autoadd)
+                                           [], cblas_src, autoadd)
                 if st:
                     add_info(env, 'cblas', res)
                 return st
@@ -81,7 +81,7 @@
             st, res = CheckATLAS(context, autoadd)
             if st:
                 st = check_include_and_run(context, 'CBLAS (ATLAS)', res.cfgopts,
-                                           ['cblas.h'], cblas_src, autoadd)
+                                           [], cblas_src, autoadd)
                 if st:
                     add_info(env, 'cblas', res)
                 return st
@@ -90,7 +90,7 @@
             st, res = CheckSunperf(context, autoadd)
             if st:
                 st = check_include_and_run(context, 'CBLAS (Sunperf)', res.cfgopts,
-                                           ['sunperf.h'], cblas_src, autoadd)
+                                           [], cblas_src, autoadd)
                 if st:
                     add_info(env, 'cblas', res)
                 return st




More information about the Numpy-svn mailing list