summaryrefslogtreecommitdiff
path: root/scipy_distutils/intelfcompiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-03-06 08:40:29 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-03-06 08:40:29 +0000
commit9760c22f6dbe9789d5fed58f34d3d859c30ad9e3 (patch)
tree8f5535d9a2164a362d1b09929397c021ece7f735 /scipy_distutils/intelfcompiler.py
parentd3f741153b13bcab2fd5d64bf4df179179aea719 (diff)
downloadnumpy-9760c22f6dbe9789d5fed58f34d3d859c30ad9e3.tar.gz
Fixed intel compiler warnings, using -72 for compiling F77 sources
Diffstat (limited to 'scipy_distutils/intelfcompiler.py')
-rw-r--r--scipy_distutils/intelfcompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy_distutils/intelfcompiler.py b/scipy_distutils/intelfcompiler.py
index 7a1097c9a..11af1bee5 100644
--- a/scipy_distutils/intelfcompiler.py
+++ b/scipy_distutils/intelfcompiler.py
@@ -20,8 +20,8 @@ class IntelFCompiler(FCompiler):
executables = {
'version_cmd' : [fc_exe, "-FI -V -c %(fname)s.f -o %(fname)s.o" \
% {'fname':dummy_fortran_file()}],
- 'compiler_f77' : [fc_exe,"-FI","-w90","-w95"],
- 'compiler_fix' : [fc_exe,"-FI","-72"],
+ 'compiler_f77' : [fc_exe,"-72","-w90","-w95"],
+ 'compiler_fix' : [fc_exe,"-FI"],
'compiler_f90' : [fc_exe],
'linker_so' : [fc_exe,"-shared"],
'archiver' : ["ar", "-cr"],