Specify whether to emit the DebuggableAttribute
attribute with debug information tracking and to disable JIT optimizations.
/ASSEMBLYDEBUG
[:DISABLE
]
The /ASSEMBLYDEBUG
linker option emits the DebuggableAttribute
attribute with debug information tracking and disables JIT optimizations. This option is the same as specifying the following attribute in source:
[assembly:Debuggable(true, true)]; // same as /ASSEMBLYDEBUG
/ASSEMBLYDEBUG:DISABLE
emits the DebuggableAttribute
attribute but disables the tracking of debug information and enables JIT optimizations. This option is the same as specifying the following attribute in source:
[assembly:Debuggable(false, false)]; // same as /ASSEMBLYDEBUG:DISABLE
By default, the linker doesn't emit the DebuggableAttribute
attribute.
DebuggableAttribute
can also be added to an assembly directly in source code. For example:
[assembly:Debuggable(true, true)]; // same as /ASSEMBLYDEBUG
You must explicitly specify that a managed image is debuggable. The /Zi
option alone is insufficient.
Other linker options that affect assembly generation are:
Open the project's Property Pages dialog box. For details, see Set C++ compiler and build properties in Visual Studio.
Select the Configuration Properties > Linker > Debug property page.
Modify the Debuggable Assembly property.
MSVC linker reference
MSVC linker options
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4