diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-11-03 08:47:42 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-11-03 08:47:42 +0000 |
commit | ba0c1639eea9308865cff70a91373b5d83c95f10 (patch) | |
tree | f575f060966973de2279b40efbc29e33e5bcdd15 /scipy/distutils/ccompiler.py | |
parent | 1514eef0c998d576ee954a02b3f4f4f46e53b1c1 (diff) | |
download | numpy-ba0c1639eea9308865cff70a91373b5d83c95f10.tar.gz |
Added Intel C Compiler class.
Diffstat (limited to 'scipy/distutils/ccompiler.py')
-rw-r--r-- | scipy/distutils/ccompiler.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scipy/distutils/ccompiler.py b/scipy/distutils/ccompiler.py index e94189b2f..2e06e6993 100644 --- a/scipy/distutils/ccompiler.py +++ b/scipy/distutils/ccompiler.py @@ -223,6 +223,13 @@ def CCompiler_get_version(self, force=0, ok_status=[0]): CCompiler.get_version = new.instancemethod(\ CCompiler_get_version,None,CCompiler) +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") +ccompiler._default_compilers = ccompiler._default_compilers \ + + (('linux.*','intel'),('linux.*','intele')) + if sys.platform == 'win32': compiler_class['mingw32'] = ('mingw32ccompiler', 'Mingw32CCompiler', "Mingw32 port of GNU C Compiler for Win32"\ |