diff options
-rw-r--r-- | mesonbuild/linkers.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py index c0a07ec..0db0fab 100644 --- a/mesonbuild/linkers.py +++ b/mesonbuild/linkers.py @@ -544,3 +544,13 @@ class GnuDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, Dynam """Representation of GNU ld.bfd and ld.gold.""" pass + + +class LLVMDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, DynamicLinker): + + """Representation of LLVM's lld (not lld-link) linker. + + This is only the posix-like linker. + """ + + pass |