Skip to content

Commit d09953f

Browse files
author
Colin Robertson
authored
Correct loc issues in /VERBOSE (#3392)
1 parent aa360a9 commit d09953f

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

docs/build/reference/verbose-print-progress-messages.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
---
22
description: "Learn more about: /VERBOSE (Print progress messages)"
33
title: "/VERBOSE (Print progress messages)"
4-
ms.date: "06/13/2019"
4+
ms.date: 02/03/2021
55
f1_keywords: ["/verbose", "VC.Project.VCLinkerTool.ShowProgress"]
66
helpviewer_keywords: ["-VERBOSE linker option", "linking [C++], session progress information", "Print Progress Messages linker option", "linker [C++], output dependency information", "/VERBOSE linker option", "dependencies [C++], dependency information in linker output", "VERBOSE linker option"]
7-
ms.assetid: 9c347d98-4c37-4724-a39e-0983934693ab
87
---
9-
# /VERBOSE (Print progress messages)
8+
# `/VERBOSE` (Print progress messages)
109

1110
Outputs progress messages during the link process.
1211

1312
## Syntax
1413

15-
> **/VERBOSE**\[**:**{**CLR**|**ICF**|**INCR**|**LIB**|**REF**|**SAFESEH**|**UNUSEDDELAYLOAD**|**UNUSEDLIBS**}\]
14+
> **`/VERBOSE`**\[**`:`**{**`CLR`**|**`ICF`**|**`INCR`**|**`LIB`**|**`REF`**|**`SAFESEH`**|**`UNUSEDDELAYLOAD`**|**`UNUSEDLIBS`**}\]
1615
1716
## Remarks
1817

1918
The linker sends information about the progress of the linking session to the **Output** window. On the command line, the information is sent to standard output, and can be redirected to a file.
2019

2120
| Option | Description |
2221
| ------------ | ----------------- |
23-
| /VERBOSE | Displays details about the linking process. |
24-
| /VERBOSE:CLR | Displays information about linker activity specific to objects and metadata compiled by using [/clr](clr-common-language-runtime-compilation.md). |
25-
| /VERBOSE:ICF | Displays information about linker activity that results from the use of [/OPT:ICF](opt-optimizations.md). |
26-
| /VERBOSE:INCR | Displays information about the incremental link process. |
27-
| /VERBOSE:LIB | Displays progress messages that indicate just the libraries searched.<br/> The displayed information includes the library search process. It lists each library and object name (with full path), the symbol being resolved from the library, and a list of objects that reference the symbol. |
28-
| /VERBOSE:REF | Displays information about linker activity that results from the use of [/OPT:REF](opt-optimizations.md). |
29-
| /VERBOSE:SAFESEH | Displays information about modules that are incompatible with safe structured exception handling when [/SAFESEH](safeseh-image-has-safe-exception-handlers.md) isn't specified. |
30-
| /VERBOSE:UNUSEDDELAYLOAD | Displays information about any delay loaded DLLs that have no symbols used when the image is created. |
31-
| /VERBOSE:UNUSEDLIBS | Displays information about any library files that are unused when the image is created. |
22+
| **`/VERBOSE`** | Displays details about the linking process. |
23+
| **`/VERBOSE:CLR`** | Displays information about linker activity specific to objects and metadata compiled by using [`/clr`](clr-common-language-runtime-compilation.md). |
24+
| **`/VERBOSE:ICF`** | Displays information about linker activity that results from the use of [`/OPT:ICF`](opt-optimizations.md). |
25+
| **`/VERBOSE:INCR`** | Displays information about the incremental link process. |
26+
| **`/VERBOSE:LIB`** | Displays progress messages that indicate just the libraries searched.<br/> The displayed information includes the library search process. It lists each library and object name (with full path), the symbol being resolved from the library, and a list of objects that reference the symbol. |
27+
| **`/VERBOSE:REF`** | Displays information about linker activity that results from the use of [`/OPT:REF`](opt-optimizations.md). |
28+
| **`/VERBOSE:SAFESEH`** | Displays information about modules that are incompatible with safe structured exception handling when [`/SAFESEH`](safeseh-image-has-safe-exception-handlers.md) isn't specified. |
29+
| **`/VERBOSE:UNUSEDDELAYLOAD`** | Displays information about any delay loaded DLLs that have no symbols used when the image is created. |
30+
| **`/VERBOSE:UNUSEDLIBS`** | Displays information about any library files that are unused when the image is created. |
3231

3332
### To set this linker option in the Visual Studio development environment
3433

0 commit comments

Comments
 (0)