From b293852d079f2ef873f757d72739e9e79195c1ec Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sun, 12 Jan 2020 19:02:26 +0530 Subject: vs: Write checksums in PE binaries (DLLs and EXEs) This is needed for detecting data corruption, and its absence (or an incorrect value) is also used as a hint by anti-viruses that the binary may be malware. Flag is only supported by MSVC `link.exe`, not `lld-link.exe` https://docs.microsoft.com/en-us/cpp/build/reference/release-set-the-checksum --- mesonbuild/linkers.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mesonbuild/linkers.py') diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py index a60248b..0a5c57e 100644 --- a/mesonbuild/linkers.py +++ b/mesonbuild/linkers.py @@ -845,6 +845,9 @@ class MSVCDynamicLinker(VisualStudioLikeLinkerMixin, DynamicLinker): super().__init__(exelist or ['link.exe'], for_machine, 'link', prefix, always_args, machine=machine, version=version, direct=direct) + def get_always_args(self) -> T.List[str]: + return self._apply_prefix(['/nologo', '/release']) + super().get_always_args() + class ClangClDynamicLinker(VisualStudioLikeLinkerMixin, DynamicLinker): -- cgit v1.1