From: Hans Wennborg Date: Tue, 18 Feb 2014 19:29:31 +0000 (+0000) Subject: clang-cl: support -v X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eff1bc0bf187fe4726bf17cc27556a9455010c7c;p=clang clang-cl: support -v It doesn't conflict with any cl.exe options and it's useful for debugging. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201597 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index 0877133da1..82c7c30c33 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -1311,7 +1311,7 @@ def undef : Flag<["-"], "undef">, Group, Flags<[CC1Option]>, HelpText<"undef all system defines">; def unexported__symbols__list : Separate<["-"], "unexported_symbols_list">; def u : JoinedOrSeparate<["-"], "u">, Group; -def v : Flag<["-"], "v">, Flags<[CC1Option]>, +def v : Flag<["-"], "v">, Flags<[CC1Option, CoreOption]>, HelpText<"Show commands to run and use verbose output">; def verify_debug_info : Flag<["--"], "verify-debug-info">, Flags<[DriverOption]>, HelpText<"Verify the binary representation of debug output">;