From a87ee38f833d6d9b9d428b99530791abedbcc160 Mon Sep 17 00:00:00 2001 From: Layomi Akinrinade Date: Thu, 30 Jul 2020 11:42:48 -0700 Subject: [PATCH] Bulk-suppress linker warnings during library builds (#40106) * Enable verbose linker output and bulk-suppress warnings * Suppress ILLinker warnings for now, so ILLinker can enable warnings by default Co-authored-by: Eric Erhardt --- eng/illink.targets | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/eng/illink.targets b/eng/illink.targets index 79eb5d4..ddd4936 100644 --- a/eng/illink.targets +++ b/eng/illink.targets @@ -216,6 +216,18 @@ $(ILLinkArgs) --disable-opt unusedinterfaces $(ILLinkArgs) --keep-dep-attributes true + + $(ILLinkArgs) --nowarn IL2006;IL2008;IL2009;IL2012;IL2025;IL2026;IL2035;IL2041 -- 2.7.4