aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-07-15 16:10:06 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-08-14 13:13:23 -0700
commit43d47899f83363a9f54ad946490e4faebdc70e94 (patch)
tree14c032eea722b06b281c70fe9b6cc0a1cd3ee662 /mesonbuild/linkers.py
parentd708b274a1de8acda65a6f35d1a016fd2339da14 (diff)
downloadmeson-43d47899f83363a9f54ad946490e4faebdc70e94.zip
meson-43d47899f83363a9f54ad946490e4faebdc70e94.tar.gz
meson-43d47899f83363a9f54ad946490e4faebdc70e94.tar.bz2
linkers: Add LLVM linker
Diffstat (limited to 'mesonbuild/linkers.py')
-rw-r--r--mesonbuild/linkers.py10
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