summaryrefslogtreecommitdiff
path: root/numpy/distutils/ccompiler.py
diff options
context:
space:
mode:
authorrgommers <ralf.gommers@googlemail.com>2011-03-09 22:10:13 +0800
committerrgommers <ralf.gommers@googlemail.com>2011-03-11 09:14:44 +0800
commitdede2691e7db9f0dacbc55444e5495856fa3f504 (patch)
treec50d6def30762d0f5a354b5fa05b9b0d38f68f32 /numpy/distutils/ccompiler.py
parent46ce29dedb1005a78a8460eb0ccfd9025152b8da (diff)
downloadnumpy-dede2691e7db9f0dacbc55444e5495856fa3f504.tar.gz
ENH: add Intel 64-bit C compiler. Closes #960.
Diffstat (limited to 'numpy/distutils/ccompiler.py')
-rw-r--r--numpy/distutils/ccompiler.py3
1 files changed, 3 insertions, 0 deletions
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':