build: Treat ICL like MSVC in regards to standard lib linking

pull/5331/head
Dylan Baker 6 years ago
parent c916024b41
commit 94591ce7b0
  1. 2
      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

Loading…
Cancel
Save