aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-07 14:00:26 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-13 11:22:31 -0700
commit7d0e0d6f6e7aa08a84aa2e5efb086bd45f364d00 (patch)
tree3ba3ee20f8096f231d65cdccb9afbf35ff370a9c /mesonbuild/linkers.py
parentaf19db7b407656cb21c487da99e3e59f785fb77d (diff)
downloadmeson-7d0e0d6f6e7aa08a84aa2e5efb086bd45f364d00.zip
meson-7d0e0d6f6e7aa08a84aa2e5efb086bd45f364d00.tar.gz
meson-7d0e0d6f6e7aa08a84aa2e5efb086bd45f364d00.tar.bz2
linkers: Add linker class for intel's xilib
Diffstat (limited to 'mesonbuild/linkers.py')
-rw-r--r--mesonbuild/linkers.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py
index a24ec21..648d1ef 100644
--- a/mesonbuild/linkers.py
+++ b/mesonbuild/linkers.py
@@ -82,6 +82,11 @@ class VisualStudioLinker(VisualStudioLikeLinker, StaticLinker):
"""Microsoft's lib static linker."""
+class IntelVisualStudioLinker(VisualStudioLikeLinker, StaticLinker):
+
+ """Intel's xilib static linker."""
+
+
class ArLinker(StaticLinker):
def __init__(self, exelist):