From f5ea341319552e84124f10d8306b4b10f89d72ad Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 3 May 2019 13:55:01 -0700 Subject: compilers/clike: ICL needs msvc workarounds in has_function --- mesonbuild/compilers/clike.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers') diff --git a/mesonbuild/compilers/clike.py b/mesonbuild/compilers/clike.py index f62aa2a..3d29b75 100644 --- a/mesonbuild/compilers/clike.py +++ b/mesonbuild/compilers/clike.py @@ -776,7 +776,7 @@ class CLikeCompiler: return True, cached # MSVC does not have compiler __builtin_-s. - if self.get_id() == 'msvc': + if self.get_id() in {'msvc', 'intel-cl'}: return False, False # Detect function as a built-in -- cgit v1.1