/VERBOSE Linker Option

Syntax: Default:
/VERB[OSE] /NOVERBOSE
/NOV[ERBOSE]  

Use /VERBOSE to have the linker display information about the linking process as it occurs, including the phase of linking and the names and paths of the object files being linked.

If you are having trouble linking because the linker is finding the wrong files or finding them in the wrong order, use /VERBOSE to determine the locations of the object files being linked and the order in which they are linked.

The output from this option is sent to stdout.

You can redirect the output to a file using redirection symbols.

/VERBOSE is the same as /INFORMATION, but is the preferred form.



Summary of Linker Options