Is there any way that NativeAOT can provide a debugging experience similar to Windbg SOS.dll? #111026
Answered
by
MichalStrehovsky
TickThunder
asked this question in
Q&A
-
The debugging experience on NativeAOT is currently quite different from JIT, and we hope to obtain debugger functionality similar to SOS.dll. |
Beta Was this translation helpful? Give feedback.
Answered by
MichalStrehovsky
Jan 2, 2025
Replies: 1 comment
-
Instructions for using SOS with native AOT are at https://learn.microsoft.com/en-us/dotnet/core/diagnostics/debugger-extensions (look for "AOT" to find native AOT-specific notes), but basically |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
TickThunder
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instructions for using SOS with native AOT are at https://learn.microsoft.com/en-us/dotnet/core/diagnostics/debugger-extensions (look for "AOT" to find native AOT-specific notes), but basically
dotnet tool install --global dotnet-debugger-extensions
, followed bydotnet-debugger-extensions install
in terminal. Followed by.load %USERPROFILE%\.dotnet\sos\sos.dll
in WinDBG.