diff options
author | Åsmund Hjulstad <ahju@statoil.com> | 2015-02-10 17:10:20 +0100 |
---|---|---|
committer | Åsmund Hjulstad <ahju@statoil.com> | 2015-02-10 17:10:20 +0100 |
commit | 713147a1c1bddfa4124f8e7396348e66c4dcbb67 (patch) | |
tree | 88e9b27a4bb4083e07016fc8739db76be82d36bc /numpy/distutils/fcompiler/intel.py | |
parent | a4cdc5b8d314fcf18faf29d82e84c877c4ed0e3f (diff) | |
download | numpy-713147a1c1bddfa4124f8e7396348e66c4dcbb67.tar.gz |
DEV: Replace deprecated options for ifort.
The /Qlowercase and /us options has been deprecated in the Intel Visual Fortran Compiler since at least version 2013.
Replace with /names:lowercase and /assume:underscore.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index a80e525e3..f76174c7a 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -152,7 +152,7 @@ class IntelVisualFCompiler(BaseIntelFCompiler): module_include_switch = '/I' def get_flags(self): - opt = ['/nologo', '/MD', '/nbs', '/Qlowercase', '/us'] + opt = ['/nologo', '/MD', '/nbs', '/names:lowercase', '/assume:underscore'] return opt def get_flags_free(self): |