Skip to content

Commit

Permalink
Merge pull request numpy#5848 from rgommers/fix-intelcompiler
Browse files Browse the repository at this point in the history
BUG: distutils: fix a typo in 64-bit Intel compiler for Windows support.
  • Loading branch information
charris committed May 6, 2015
2 parents 5ea48b8 + 0c9967b commit 56e9bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/distutils/ccompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def CCompiler_cxx_compiler(self):
"Intel C Compiler for 64-bit applications")
compiler_class['intelw'] = ('intelccompiler', 'IntelCCompilerW',
"Intel C Compiler for 32-bit applications on Windows")
compiler_class['intelemw'] = ('intelem64tccompiler', 'IntelEM64TCCompilerW',
compiler_class['intelemw'] = ('intelccompiler', 'IntelEM64TCCompilerW',
"Intel C Compiler for 64-bit applications on Windows")
compiler_class['pathcc'] = ('pathccompiler', 'PathScaleCCompiler',
"PathScale Compiler for SiCortex-based applications")
Expand Down

0 comments on commit 56e9bd5

Please sign in to comment.