summaryrefslogtreecommitdiff
path: root/system_info.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2007-05-16 15:27:12 +0000
committercookedm <cookedm@localhost>2007-05-16 15:27:12 +0000
commit4c657edb70dd3a3f810faf1a9b0b5f7049a046cd (patch)
tree29cd1954d2d201fa6287c845be812efe67d3ea6f /system_info.py
parent9795a2c6225cb56e1e34d53b722f2e2b050b4fdc (diff)
downloadnumpy-4c657edb70dd3a3f810faf1a9b0b5f7049a046cd.tar.gz
Merged revisions 3732-3768 via svnmerge from
http://svn.scipy.org/svn/numpy/trunk/numpy/distutils ........ r3740 | cookedm | 2007-05-10 13:26:20 -0400 (Thu, 10 May 2007) | 2 lines Use a try/finally instead of try/except Exception for cleanup in numpy/distutils/core.py ........ r3745 | pearu | 2007-05-11 08:50:42 -0400 (Fri, 11 May 2007) | 1 line Clean up setup() calls. ........ r3746 | pearu | 2007-05-11 08:58:31 -0400 (Fri, 11 May 2007) | 1 line Using meaningful NotFoundError exception for blas_opt and lapack_opt resources. ........ r3747 | pearu | 2007-05-11 09:37:31 -0400 (Fri, 11 May 2007) | 1 line Raise exception when pyrex is required. ........ r3759 | cookedm | 2007-05-14 05:25:11 -0400 (Mon, 14 May 2007) | 2 lines With gfortran, compile modern Xeon's with EM64T with -march=nocona (#515) ........ r3763 | pearu | 2007-05-14 08:17:49 -0400 (Mon, 14 May 2007) | 1 line Workaround Python distutils bug sf 1718574. ........ r3764 | cookedm | 2007-05-14 20:35:49 -0400 (Mon, 14 May 2007) | 2 lines #520: don't add arch-specific flags when linking with Intel Fortran ........
Diffstat (limited to 'system_info.py')
-rw-r--r--system_info.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/system_info.py b/system_info.py
index 641e23bcf..3e53b3a18 100644
--- a/system_info.py
+++ b/system_info.py
@@ -1158,6 +1158,8 @@ from distutils.util import get_platform
class lapack_opt_info(system_info):
+ notfounderror = LapackNotFoundError
+
def calc_info(self):
if sys.platform=='darwin' and not os.environ.get('ATLAS',None):
@@ -1253,6 +1255,8 @@ class lapack_opt_info(system_info):
class blas_opt_info(system_info):
+ notfounderror = BlasNotFoundError
+
def calc_info(self):
if sys.platform=='darwin' and not os.environ.get('ATLAS',None):