How to build OpenSSL in release mode with symbols?

Posted by twk on Stack Overflow See other posts from Stack Overflow or by twk
Published on 2009-04-07T19:04:28Z Indexed on 2010/04/14 21:33 UTC
Read the original article Hit count: 569

Filed under:
|
|
|

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

© Stack Overflow or respective owner

Related posts about openssl

Related posts about pdb-ms