diff options
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index c800bbe..de14d4a 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -1046,6 +1046,10 @@ class CCompiler(Compiler): if self.links(templ.format(**fargs), env, extra_args, dependencies): return True + # MSVC does not have compiler __builtin_-s. + if self.get_id() == 'msvc': + return False + # Detect function as a built-in # # Some functions like alloca() are defined as compiler built-ins which |