From dec16147912d7991dd665d4253f0358689b2cea6 Mon Sep 17 00:00:00 2001 From: Pengxuan Zheng Date: Mon, 20 Jun 2022 15:14:44 -0700 Subject: [PATCH] [LLD][COFF] Ignore /pdbcompress flag Microsoft does not seem to document the flag. Ignoring it for now is probably better than getting an unknown flag error. Reviewed By: thakis Differential Revision: https://reviews.llvm.org/D128231 --- lld/COFF/Options.td | 1 + 1 file changed, 1 insertion(+) diff --git a/lld/COFF/Options.td b/lld/COFF/Options.td index 1116eb8..2d87a5e 100644 --- a/lld/COFF/Options.td +++ b/lld/COFF/Options.td @@ -296,6 +296,7 @@ def nologo : F<"nologo">; def throwingnew : F<"throwingnew">; def editandcontinue : F<"editandcontinue">; def fastfail : F<"fastfail">; +def pdbcompress : F<"pdbcompress">; def delay : P_priv<"delay">; def errorreport : P_priv<"errorreport">; -- 2.7.4