You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sanitizers/asan-offline-crash-dumps.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,17 +52,17 @@ The following steps are for local or distributed scenarios that lead to creation
52
52
53
53
1. Open Visual Studio and select **Continue without code**. Then select **File** > **Open** > **File** to open the File Open dialog. Make sure the file name suffix is **.dmp**.
Copy file name to clipboardExpand all lines: docs/sanitizers/asan.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Microsoft's AddressSanitizer technology enables integration with the Visual Stud
36
36
37
37
The AddressSanitizer is installed by default with C++ workloads in the Visual Studio Installer. However, if you're upgrading from an older version of Visual Studio 2019, you'll need to use the Installer to enable ASan support after the upgrade:
38
38
39
-

39
+

40
40
41
41
You can choose **Modify** on your existing Visual Studio installation from the Visual Studio Installer to get to the screen above.
42
42
@@ -94,13 +94,13 @@ int main() {
94
94
95
95
Using a developer command prompt for Visual Studio 2019, compile *`main.cpp`* using `/fsanitize=address /Zi`

104
104
105
105
### Red highlights, from top to bottom
106
106
@@ -119,7 +119,7 @@ Consider the overlaid, red boxes that highlight seven key pieces of information:
119
119
120
120
AddressSanitizer is integrated with the Visual Studio IDE. To turn on the AddressSanitizer for an MSBuild project, right-click on the project in Solution Explorer and choose Properties. In the Property Pages dialog, select **Configuration Properties** > **C/C++** > **General**, then modify the **Enable AddressSanitizer** property. Choose **OK** to save your changes.

123
123
124
124
To build from the IDE, opt out of [these incompatible options](./asan-known-issues.md#Incompatible-switches-and-functionality). For an existing project compiled by using **`/Od`** (or Debug mode), you may need to turn off these options:
125
125
@@ -129,15 +129,15 @@ To build from the IDE, opt out of [these incompatible options](./asan-known-issu
129
129
130
130
To build and run the debugger, enter **F5**. You'll see this window in Visual Studio:
0 commit comments