From 3406b315be05a2548897ca1a993cbf680bb61ca6 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 15 Jul 2019 16:17:49 -0700 Subject: linkers: Add class for Intel Xild linker. --- mesonbuild/linkers.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'mesonbuild') 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 -- cgit v1.1