vote up 1 vote down star
1

I generally build my openssl libs by doing this:

perl Configure VC-WIN32
ms\do_masm 
nmake -f ms\ntdll.mak 
nmake -f ms\ntdll.mak test

For debugging minidumps, I'd like to get a pdb file for the 2 dlls (while still building them in "release" mode). I've added /Zi to the CFLAGS part of ms\ntdll.mak, but I still get "Binary was not built with debug information" when I look at the in-memory modules in the visual studio debugger. Am I missing a step?

Thanks

flag

47% accept rate

2 Answers

vote up 1 vote down

link needs /DEBUG.

link|flag
vote up 0 vote down

Also remove any optimization: no /O options, no /G options

The best way to understand differents between Debug and Release configurations is create new VC++ project in Visual Studio and compare compiler and linker flags.

See more at MSDN: Compiler Options Listed by Category, search by keyword optimization.

HTH

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.