diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-10-03 21:25:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-03 21:25:04 -0700 |
commit | 10b44584ff0b1f49ece260a48f89eb59c123616f (patch) | |
tree | 3bc4f127fe0ecfc81aed2d871820efa1aa133138 /mesonbuild/linkers.py | |
parent | 264939963f696cbf768b1d7c8011d72a8064323f (diff) | |
parent | 2fe400c350a49930c3fbe86602efa9e0950bb1cb (diff) | |
download | meson-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.py | 7 |
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) |