[Numpy-svn] r2923 - trunk/numpy/distutils/fcompiler

numpy-svn at scipy.org numpy-svn at scipy.org
Sat Jul 29 10:14:11 EDT 2006


Author: cookedm
Date: 2006-07-29 09:14:08 -0500 (Sat, 29 Jul 2006)
New Revision: 2923

Modified:
   trunk/numpy/distutils/fcompiler/gnu.py
   trunk/numpy/distutils/fcompiler/vast.py
Log:
Fix bugs in gnu and vast fcompilers (should fix #214)


Modified: trunk/numpy/distutils/fcompiler/gnu.py
===================================================================
--- trunk/numpy/distutils/fcompiler/gnu.py	2006-07-28 21:19:31 UTC (rev 2922)
+++ trunk/numpy/distutils/fcompiler/gnu.py	2006-07-29 14:14:08 UTC (rev 2923)
@@ -86,7 +86,7 @@
 
     def get_libgcc_dir(self):
         status, output = exec_command(self.compiler_f77 +
-                                      '-print-libgcc-file-name',
+                                      ['-print-libgcc-file-name'],
                                       use_tee=0)
         if not status:
             return os.path.dirname(output)

Modified: trunk/numpy/distutils/fcompiler/vast.py
===================================================================
--- trunk/numpy/distutils/fcompiler/vast.py	2006-07-28 21:19:31 UTC (rev 2922)
+++ trunk/numpy/distutils/fcompiler/vast.py	2006-07-29 14:14:08 UTC (rev 2923)
@@ -35,7 +35,7 @@
     def get_flags_arch(self):
         vast_version = self.get_version()
         gnu = GnuFCompiler()
-        gnu.customize()
+        gnu.customize(None)
         self.version = gnu.get_version()
         opt = GnuFCompiler.get_flags_arch(self)
         self.version = vast_version




More information about the Numpy-svn mailing list