Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"binary was not built with debug information " warning meaning in mfc application?

I am getting the following Warning when i run my Windows Application(MFC) in Windows 7.

'XXX.exe': Loaded 'C:\2010\Debug\bin\plugins\control\libhotkeys_plugin.dll', Binary was not built with debug information.

Please Help Me out.Thank You

like image 295
vasanth kumar Avatar asked Sep 09 '25 16:09

vasanth kumar


1 Answers

It seems that your binary was build in Release mode

Now there are two ways which you can follow....

  • build the binary with "Debug" configuration
  • change the project settings so that a Program Database file (PDB) is generated in the release mode.

    Now you can generate PDB from the property window...

enter image description here enter image description here

like image 111
Jitendra Avatar answered Sep 12 '25 22:09

Jitendra