Thread: debugging symbols

debugging symbols

From
Jade Koskela
Date:
Does anyone have a copy of the pdb file for the recent releases (May, June)?

Re: debugging symbols

From
Michael Paquier
Date:
On Fri, Aug 29, 2014 at 3:00 AM, Jade Koskela <jkoskela0@gmail.com> wrote:
> Does anyone have a copy of the pdb file for the recent releases (May, June)?
I am not sure if someone actually keeps those files around, but you
could generate them yourselves by compiling the source code with
debugging symbols.
- /Zi => http://msdn.microsoft.com/en-us/library/958x11bc%28v=vs.90%29.aspx
- /DEBUG http://msdn.microsoft.com/en-us/library/xe4t6fc1%28v=vs.90%29.aspx

For example when running nmake you can do something similar to that:
nmake /f win64.mak CUSTOMCLOPT="/Zi" CUSTOMLINKLIBS="/DEBUG"
Regards,
--
Michael