diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 16:17:49 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-08-14 13:13:23 -0700 |
commit | 3406b315be05a2548897ca1a993cbf680bb61ca6 (patch) | |
tree | 73f3bc8d494ba68bb69417b5f5d5dfddad7fddf8 | |
parent | c0a1ec9346136055a8a7a8cb7268682487fe32b1 (diff) | |
download | meson-3406b315be05a2548897ca1a993cbf680bb61ca6.zip meson-3406b315be05a2548897ca1a993cbf680bb61ca6.tar.gz meson-3406b315be05a2548897ca1a993cbf680bb61ca6.tar.bz2 |
linkers: Add class for Intel Xild linker.
-rw-r--r-- | mesonbuild/linkers.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py index e0ccdfa..632ff9a 100644 --- a/mesonbuild/linkers.py +++ b/mesonbuild/linkers.py @@ -620,3 +620,23 @@ class LLVMDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, Dyna """ pass + + +class XildLinuxDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, DynamicLinker): + + """Representation of Intel's Xild linker. + + This is only the linux-like linker which dispatches to Gnu ld. + """ + + pass + + +class XildAppleDynamicLinker(AppleDynamicLinker): + + """Representation of Intel's Xild linker. + + This is the apple linker, which dispatches to Apple's ld. + """ + + pass
\ No newline at end of file |