From 94591ce7b070aef02d556ed89f1d202c1382b2a4 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 2 May 2019 16:26:38 -0700 Subject: [PATCH] build: Treat ICL like MSVC in regards to standard lib linking --- mesonbuild/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 603e0d0f9..bc1744592 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1249,7 +1249,7 @@ You probably should put it in link_with instead.''') ''' linker, _ = self.get_clink_dynamic_linker_and_stdlibs() # Mixing many languages with MSVC is not supported yet so ignore stdlibs. - if linker and linker.get_id() in ['msvc', 'clang-cl', 'llvm', 'dmd']: + if linker and linker.get_id() in {'msvc', 'clang-cl', 'intel-cl', 'llvm', 'dmd'}: return True return False