aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/linkers.py')
-rw-r--r--mesonbuild/linkers.py20
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