aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-10-03 21:25:04 -0700
committerGitHub <noreply@github.com>2020-10-03 21:25:04 -0700
commit10b44584ff0b1f49ece260a48f89eb59c123616f (patch)
tree3bc4f127fe0ecfc81aed2d871820efa1aa133138 /mesonbuild/linkers.py
parent264939963f696cbf768b1d7c8011d72a8064323f (diff)
parent2fe400c350a49930c3fbe86602efa9e0950bb1cb (diff)
downloadmeson-10b44584ff0b1f49ece260a48f89eb59c123616f.zip
meson-10b44584ff0b1f49ece260a48f89eb59c123616f.tar.gz
meson-10b44584ff0b1f49ece260a48f89eb59c123616f.tar.bz2
Merge pull request #7795 from dcbaker/submit/full-compiler-annotations
Full annotations for the Compiler package
Diffstat (limited to 'mesonbuild/linkers.py')
-rw-r--r--mesonbuild/linkers.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py
index ed28fa3..ad5a4f5 100644
--- a/mesonbuild/linkers.py
+++ b/mesonbuild/linkers.py
@@ -1171,8 +1171,11 @@ class XilinkDynamicLinker(VisualStudioLikeLinkerMixin, DynamicLinker):
id = 'xilink'
- def __init__(self, for_machine: mesonlib.MachineChoice, always_args: T.List[str],
- *, version: str = 'unknown version'):
+ def __init__(self, for_machine: mesonlib.MachineChoice, always_args: T.List[str], *,
+ exelist: T.Optional[T.List[str]] = None,
+ prefix: T.Union[str, T.List[str]] = '',
+ machine: str = 'x86', version: str = 'unknown version',
+ direct: bool = True):
super().__init__(['xilink.exe'], for_machine, '', always_args, version=version)