diff options
author | yolanda15 <yolanda15@users.noreply.github.com> | 2015-08-22 07:40:57 +0800 |
---|---|---|
committer | yolanda15 <yolanda15@users.noreply.github.com> | 2015-08-22 07:40:57 +0800 |
commit | 74bb22cf2de852252f1dc3625eb4a0489d4f4192 (patch) | |
tree | a04ad887ee54a7a2da6f8b257822bcaace3b0f98 /numpy/distutils/intelccompiler.py | |
parent | 630cba17dc452c5b5e0b769525a4f29d0cd6ceba (diff) | |
download | numpy-74bb22cf2de852252f1dc3625eb4a0489d4f4192.tar.gz |
BLD: fix compiler_cxx check failure
Diffstat (limited to 'numpy/distutils/intelccompiler.py')
-rw-r--r-- | numpy/distutils/intelccompiler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py index 81009bb6f..db6ef80bd 100644 --- a/numpy/distutils/intelccompiler.py +++ b/numpy/distutils/intelccompiler.py @@ -63,6 +63,7 @@ if sys.platform == 'win32': A modified Intel compiler compatible with an MSVC-built Python. """ compiler_type = 'intelw' + compiler_cxx = 'icl' def __init__(self, verbose=0, dry_run=0, force=0): MSVCCompiler.__init__(self, verbose, dry_run, force) |