[Numpy-svn] r4288 - branches/numpy.scons/numpy/distutils/scons

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Oct 25 03:58:32 EDT 2007


Author: cdavid
Date: 2007-10-25 02:58:23 -0500 (Thu, 25 Oct 2007)
New Revision: 4288

Modified:
   branches/numpy.scons/numpy/distutils/scons/custom_checkers.py
Log:
Fix framework flags for custom checker.

Modified: branches/numpy.scons/numpy/distutils/scons/custom_checkers.py
===================================================================
--- branches/numpy.scons/numpy/distutils/scons/custom_checkers.py	2007-10-25 07:53:18 UTC (rev 4287)
+++ branches/numpy.scons/numpy/distutils/scons/custom_checkers.py	2007-10-25 07:58:23 UTC (rev 4288)
@@ -117,7 +117,9 @@
             is_intel = 0
             cflags.append('-faltivec')
         # TODO: we should have a small test code to test Accelerate vs veclib
-        cflags.append('-framework Accelerate')
+        # XXX: This double append is not good, any other way ?
+        cflags.append('-framework')
+        clfags.append('Accelerate')
     else:
         libs.append('cblas')
 




More information about the Numpy-svn mailing list