summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-02-11 08:11:25 -0500
committerCharles Harris <charlesr.harris@gmail.com>2015-02-11 08:11:25 -0500
commit8cf7c4a9534e5444f07974e019383a395a8fac9e (patch)
treed162e9cd07ce064022a72c92c0ba4a0d2c0210d1 /numpy
parentc64b61bc21e460f7b16d2b4ec89a84f1a191cb43 (diff)
parent713147a1c1bddfa4124f8e7396348e66c4dcbb67 (diff)
downloadnumpy-8cf7c4a9534e5444f07974e019383a395a8fac9e.tar.gz
Merge pull request #5555 from ahjulstad/ifort-deprecated-options
DEV: Replace deprecated options for ifort.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/fcompiler/intel.py2
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):