aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-08-27 22:30:23 +0300
committerGitHub <noreply@github.com>2018-08-27 22:30:23 +0300
commit1ffc8de5e8cc79dbaa54fd1ac02b6b4c5edac7a1 (patch)
tree916eb6a1c988386d9848115709dd9c6b199a5a5a /mesonbuild/build.py
parent731906504efb57aa9ae86685501f1d3a0aa22121 (diff)
parentfd2c3b4c77ac1977d254301876525f8e631a940a (diff)
downloadmeson-1ffc8de5e8cc79dbaa54fd1ac02b6b4c5edac7a1.zip
meson-1ffc8de5e8cc79dbaa54fd1ac02b6b4c5edac7a1.tar.gz
meson-1ffc8de5e8cc79dbaa54fd1ac02b6b4c5edac7a1.tar.bz2
Merge pull request #3981 from GoaLitiuM/d-win-fixes
Fix D support on Windows
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index caaadd8..b34ae2f 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1088,7 +1088,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() == 'msvc':
+ if linker and linker.get_id() in ['msvc', 'llvm', 'dmd']:
return True
return False