diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 16:10:06 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-08-14 13:13:23 -0700 |
commit | 43d47899f83363a9f54ad946490e4faebdc70e94 (patch) | |
tree | 14c032eea722b06b281c70fe9b6cc0a1cd3ee662 /mesonbuild/linkers.py | |
parent | d708b274a1de8acda65a6f35d1a016fd2339da14 (diff) | |
download | meson-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.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 |