aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-04-29 10:36:02 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-02 14:56:23 -0700
commitda5f07cf39b6ab9b67676f843e16a0e6caeb69a4 (patch)
treea0ad837832b7108eed7251e97fdd31a1baecbe18 /mesonbuild/compilers/cpp.py
parent482e26764ed762c0de939cbdd9712be7ca569b9c (diff)
downloadmeson-da5f07cf39b6ab9b67676f843e16a0e6caeb69a4.zip
meson-da5f07cf39b6ab9b67676f843e16a0e6caeb69a4.tar.gz
meson-da5f07cf39b6ab9b67676f843e16a0e6caeb69a4.tar.bz2
Revert "detect Intel ICL on windows"
This reverts commit 3a75bb5259abbcae820b47f5f4633c564411893b.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index e2bcaf0..2fd0b39 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -19,7 +19,7 @@ from .. import coredata
from .. import mlog
from ..mesonlib import MesonException, version_compare
-from .c import CCompiler, VisualStudioCCompiler, ClangClCCompiler, IntelClCCompiler
+from .c import CCompiler, VisualStudioCCompiler, ClangClCCompiler
from .compilers import (
gnu_winlibs,
msvc_winlibs,
@@ -406,13 +406,6 @@ class ClangClCPPCompiler(VisualStudioCPPCompiler, ClangClCCompiler):
VisualStudioCPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap, target)
self.id = 'clang-cl'
-
-class IntelClCPPCompiler(VisualStudioCPPCompiler, IntelClCCompiler):
- def __init__(self, exelist, version, is_cross, exe_wrap, target):
- VisualStudioCPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap, target)
- self.id = 'intel'
-
-
class ArmCPPCompiler(ArmCompiler, CPPCompiler):
def __init__(self, exelist, version, compiler_type, is_cross, exe_wrap=None, **kwargs):
CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap, **kwargs)