[Numpy-svn] r5986 - in trunk: . numpy/distutils

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Nov 7 03:14:11 EST 2008


Author: cdavid
Date: 2008-11-07 02:14:06 -0600 (Fri, 07 Nov 2008)
New Revision: 5986

Modified:
   trunk/INSTALL.txt
   trunk/numpy/distutils/system_info.py
Log:
Disable looking for 3gf libraries; it causes more problem than it solves.

Modified: trunk/INSTALL.txt
===================================================================
--- trunk/INSTALL.txt	2008-11-07 08:09:30 UTC (rev 5985)
+++ trunk/INSTALL.txt	2008-11-07 08:14:06 UTC (rev 5986)
@@ -45,6 +45,10 @@
 
     sudo apt-get install libatlas3gf-sse2
 
+*NOTE*: if you build your own atlas, Intrepid changed its default fortran
+compiler to gfortran. So you should rebuild everything from scratch, including
+lapack, to use it on Intrepid.
+
 Ubuntu 8.04 and lower
 ---------------------
 

Modified: trunk/numpy/distutils/system_info.py
===================================================================
--- trunk/numpy/distutils/system_info.py	2008-11-07 08:09:30 UTC (rev 5985)
+++ trunk/numpy/distutils/system_info.py	2008-11-07 08:14:06 UTC (rev 5986)
@@ -520,8 +520,9 @@
             exts.append('.dylib')
         # Debian and Ubuntu added a g3f suffix to shared library to deal with
         # g77 -> gfortran ABI transition
-        if sys.platform[:5] == 'linux':
-            exts.append('.so.3gf')
+        # XXX: disabled, it hides more problem than it solves.
+        #if sys.platform[:5] == 'linux':
+        #    exts.append('.so.3gf')
         return exts
 
     def check_libs(self,lib_dir,libs,opt_libs =[]):




More information about the Numpy-svn mailing list