From 74bb22cf2de852252f1dc3625eb4a0489d4f4192 Mon Sep 17 00:00:00 2001 From: yolanda15 Date: Sat, 22 Aug 2015 07:40:57 +0800 Subject: [PATCH] BLD: fix compiler_cxx check failure --- numpy/distutils/intelccompiler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/numpy/distutils/intelccompiler.py b/numpy/distutils/intelccompiler.py index 81009bb6fcd6..db6ef80bdbf0 100644 --- a/numpy/distutils/intelccompiler.py +++ b/numpy/distutils/intelccompiler.py @@ -63,6 +63,7 @@ class IntelCCompilerW(MSVCCompiler): 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)