diff options
author | cookedm <cookedm@localhost> | 2007-05-15 00:35:49 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-05-15 00:35:49 +0000 |
commit | f999341eedfcf47da72f352734a294cfa48607c4 (patch) | |
tree | 5494bd1eedea03c97b3f7b0dd60b4b3f886fce8c /numpy/distutils/fcompiler/intel.py | |
parent | 8b8f6903eb696d35eb2ce62e1266291ef26423d7 (diff) | |
download | numpy-f999341eedfcf47da72f352734a294cfa48607c4.tar.gz |
#520: don't add arch-specific flags when linking with Intel Fortran
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index b4ae833bf..f5e57dda2 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -76,7 +76,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): |