diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-05-02 16:26:38 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-13 11:22:31 -0700 |
commit | 94591ce7b070aef02d556ed89f1d202c1382b2a4 (patch) | |
tree | 4fd8391e103bd9bcb43484b18a942230dbfe18eb /mesonbuild/build.py | |
parent | c916024b41874e2afdcb207f172c4a447c166461 (diff) | |
download | meson-94591ce7b070aef02d556ed89f1d202c1382b2a4.zip meson-94591ce7b070aef02d556ed89f1d202c1382b2a4.tar.gz meson-94591ce7b070aef02d556ed89f1d202c1382b2a4.tar.bz2 |
build: Treat ICL like MSVC in regards to standard lib linking
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 603e0d0..bc17445 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 |