From dede2691e7db9f0dacbc55444e5495856fa3f504 Mon Sep 17 00:00:00 2001 From: rgommers Date: Wed, 9 Mar 2011 22:10:13 +0800 Subject: ENH: add Intel 64-bit C compiler. Closes #960. --- numpy/distutils/ccompiler.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'numpy/distutils/ccompiler.py') diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index 0e8f10fcf..14213dc4b 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -494,10 +494,13 @@ compiler_class['intel'] = ('intelccompiler','IntelCCompiler', "Intel C Compiler for 32-bit applications") compiler_class['intele'] = ('intelccompiler','IntelItaniumCCompiler', "Intel C Itanium Compiler for Itanium-based applications") +compiler_class['intelem'] = ('intelccompiler','IntelEM64TCCompiler', + "Intel C Compiler for 64-bit applications") compiler_class['pathcc'] = ('pathccompiler','PathScaleCCompiler', "PathScale Compiler for SiCortex-based applications") ccompiler._default_compilers += (('linux.*','intel'), ('linux.*','intele'), + ('linux.*','intelem'), ('linux.*','pathcc')) if sys.platform == 'win32': -- cgit v1.2.1