Skip to content

Commit 2d3830a

Browse files
Merge pull request #13768 from TylerMSFT/update
add fastbuild note
2 parents d25695e + 7b6c814 commit 2d3830a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/debugger/cpp-dynamic-debugging.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: C++ Dynamic Debugging (Preview)
33
description: Learn how to use C++ Dynamic Debugging to easily debug optimized code.
4-
ms.date: 03/17/2025
4+
ms.date: 04/01/2025
55
ms.topic: how-to
66
f1_keywords:
77
- vs.debug
@@ -265,7 +265,8 @@ If things aren't working as expected, open a ticket at [Developer Community](htt
265265
266266
## General notes
267267
268-
IncrediBuild 10.24 supports C++ Dynamic Debugging builds.
268+
IncrediBuild 10.24 supports C++ Dynamic Debugging builds.\
269+
FastBuild v1.15 supports C++ Dynamic Debugging builds.
269270
270271
Functions that are inlined are deoptimized on demand. If you set a breakpoint on an inlined function, the debugger deoptimizes the function and its caller. The breakpoint hits where you expect it to, as if your program was built without compiler optimizations.
271272
@@ -294,8 +295,8 @@ If your project is built with the Visual Studio build system, a good way to make
294295
295296
1. The **New Solution Configuration** dialog opens. In the **Name** field, enter a name for the new configuration, such as `ReleaseDD`. Ensure that **Copy settings from:** is set to **Release**. Then select **OK** to create the new configuration.
296297
297-
:::image type="complex" source="media/vs-2022/debug-clone-configuration-details-release.png" alt-text="A screenshot that shows the New Project Configuration dialog.":::
298-
The Name field is set to ReleaseDD. The Copy settings from: dropdown list is set to Release.
298+
:::image type="complex" source="media/vs-2022/debug-clone-configuration-details-release.png" alt-text="A screenshot that shows the New Project Configuration dialog for a release build.":::
299+
The Name field is set to ReleaseDD. The 'Copy settings from' dropdown list is set to Release.
299300
:::image-end:::
300301
301302
1. The new configuration appears in the **Active solution configuration** dropdown list. Select **Close**.
@@ -332,7 +333,7 @@ If you want to use debug binaries but you want them to run faster, you can modif
332333
333334
1. The **New Project Configuration** dialog opens. In the **Name** field, enter a name for the new configuration, such as **DebugDD**. Ensure that **Copy settings from:** is set to **Debug**. Then select **OK** to create the new configuration.
334335
335-
:::image type="complex" source="media/vs-2022/debug-clone-configuration-details-debug.png" alt-text="A screenshot that shows the New Project Configuration dialog.":::
336+
:::image type="complex" source="media/vs-2022/debug-clone-configuration-details-debug.png" alt-text="A screenshot that shows the `New Project Configuration dialog` for a debug build.":::
336337
The name field is set to DebugDD. The Copy settings from: dropdown list is set to Debug.
337338
:::image-end:::
338339

0 commit comments

Comments
 (0)