[PECOFF] Print input file names if /verbose is specified.

llvm-svn: 196196
This commit is contained in:
Rui Ueyama 2013-12-03 02:21:52 +00:00
parent 9ae4da2e6d
commit 98b28a1eaa
2 changed files with 5 additions and 2 deletions

View File

@ -808,6 +808,10 @@ WinLinkDriver::parse(int argc, const char *argv[], PECOFFLinkingContext &ctx,
ctx.setDeadStripping(false);
break;
case OPT_verbose:
ctx.setLogInputFiles(true);
break;
case OPT_force:
case OPT_force_unresolved:
// /force and /force:unresolved mean the same thing. We do not currently

View File

@ -52,7 +52,7 @@ def incl_c : Separate<["/", "-"], "include">, Alias<incl>;
def nodefaultlib_all : F<"nodefaultlib">;
def noentry : F<"noentry">;
def dll : F<"dll">;
def verbose : F<"verbose">;
def debug : F<"debug">;
def swaprun_cd : F<"swaprun:cd">;
def swaprun_net : F<"swaprun:net">;
@ -94,7 +94,6 @@ def ignoreidl : F<"ignoreidl">;
def incremental : F<"incremental">;
def no_incremental : F<"incremental:no">;
def nologo : F<"nologo">;
def verbose : F<"verbose">;
def delay : QF<"delay">;
def delayload : QF<"delayload">;