diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-04-29 10:36:02 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-02 14:56:23 -0700 |
commit | da5f07cf39b6ab9b67676f843e16a0e6caeb69a4 (patch) | |
tree | a0ad837832b7108eed7251e97fdd31a1baecbe18 /mesonbuild/compilers/c.py | |
parent | 482e26764ed762c0de939cbdd9712be7ca569b9c (diff) | |
download | meson-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/c.py')
-rw-r--r-- | mesonbuild/compilers/c.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 1aeb637..a80e1b7 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -1729,12 +1729,6 @@ class ClangClCCompiler(VisualStudioCCompiler): self.id = 'clang-cl' -class IntelClCCompiler(VisualStudioCCompiler): - def __init__(self, exelist, version, is_cross, exe_wrap, target): - super().__init__(exelist, version, is_cross, exe_wrap, target) - self.id = 'intel' - - class ArmCCompiler(ArmCompiler, CCompiler): def __init__(self, exelist, version, compiler_type, is_cross, exe_wrapper=None, **kwargs): CCompiler.__init__(self, exelist, version, is_cross, exe_wrapper, **kwargs) |