microsoft / FFmpegInterop

This is a code sample to make it easier to use FFmpeg in Windows applications.
Apache License 2.0
1.27k stars 308 forks source link

MSFT: 32158630 - Update debug builds to use /DEBUG:FULL linker option for better WinDbg debugging experience #281

Closed brbeec closed 3 years ago

brbeec commented 3 years ago

WinDbgX has limited support for PDBs generated using the /DEBUG:FASTLINK linker option which is the default in VS2017+. For example, wild card symbol searches (x FFmpegInterop!*FFmpegInteropMSS::OnStarting) don't work.

This change updates debug builds to use the /DEBUG:FULL linker option for a better WinDbgX debugging experience.

/DEBUG (Generate Debug Info) | Microsoft Docs