diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-27 22:30:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-27 22:30:23 +0300 |
commit | 1ffc8de5e8cc79dbaa54fd1ac02b6b4c5edac7a1 (patch) | |
tree | 916eb6a1c988386d9848115709dd9c6b199a5a5a /mesonbuild/build.py | |
parent | 731906504efb57aa9ae86685501f1d3a0aa22121 (diff) | |
parent | fd2c3b4c77ac1977d254301876525f8e631a940a (diff) | |
download | meson-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.py | 2 |
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 |