diff options
Diffstat (limited to 'scipy_distutils/intelfcompiler.py')
-rw-r--r-- | scipy_distutils/intelfcompiler.py | 4 |
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"], |