Hello,
I’m using VisualGDB version 5.6 in Visual Studio 2017
How can i remove the debug symbols from build?
In Win32 platform i select None in “C/C++->General->Debug information Format”. no such value in VisualGDB platform for this field.
Also in Linker->Debugging->Generate Debug Info i also select the No option but no such field in VisualGDB
Best regards
Shmuel
The VisualGDB setting for removing the debug info would be Linker->Advanced->Strip Debug Information. It enables the “-Wl,–strip-debug” option mentioned by @bflannery.
But you can also add a post-build step for stripping it, moving it to a separate symbol file as shown here.