diff options
author | cookedm <cookedm@localhost> | 2007-05-16 15:27:12 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-05-16 15:27:12 +0000 |
commit | 4c657edb70dd3a3f810faf1a9b0b5f7049a046cd (patch) | |
tree | 29cd1954d2d201fa6287c845be812efe67d3ea6f /fcompiler/intel.py | |
parent | 9795a2c6225cb56e1e34d53b722f2e2b050b4fdc (diff) | |
download | numpy-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 'fcompiler/intel.py')
-rw-r--r-- | fcompiler/intel.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fcompiler/intel.py b/fcompiler/intel.py index 2c34d69ed..e8178eca9 100644 --- a/fcompiler/intel.py +++ b/fcompiler/intel.py @@ -79,7 +79,6 @@ class IntelFCompiler(FCompiler): v = self.get_version() if v and v >= '8.0': opt.append('-nofor_main') - opt.extend(self.get_flags_arch()) return opt class IntelItaniumFCompiler(IntelFCompiler): |