Skip to content

Debugging Notes

Karl Tarbet edited this page May 20, 2025 · 1 revision

valgrind on linux has helped

Visual Studio

When using the Address Sanitizer option the following needs to to be in the path:

C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.43.34808\bin\Hostx64\x64

// setup debug memory management _CrtSetDbgFlag(-1); ... // check for leaks _ASSERTE(_CrtCheckMemory());

Clone this wiki locally