How to build OpenSSL in release mode with symbols? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T19:12:29Zhttp://stackoverflow.com/feeds/question/727164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/727164/how-to-build-openssl-in-release-mode-with-symbols1How to build OpenSSL in release mode with symbols?twk2009-04-07T19:04:28Z2009-04-07T21:47:18Z
<p>I generally build my openssl libs by doing this:</p>
<pre><code>perl Configure VC-WIN32
ms\do_masm
nmake -f ms\ntdll.mak
nmake -f ms\ntdll.mak test
</code></pre>
<p>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?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/727164/how-to-build-openssl-in-release-mode-with-symbols/727201#7272010Answer by abatishchev for How to build OpenSSL in release mode with symbols?abatishchev2009-04-07T19:14:00Z2009-04-07T19:14:00Z<p>Also remove any optimization: no /O options, no /G options</p>
<p>The best way to understand differents between <code>Debug</code> and <code>Release</code> configurations is create new VC++ project in Visual Studio and compare compiler and linker flags.</p>
<p>See more at <a href="http://msdn.microsoft.com/en-us/library/19z1t1wy.aspx" rel="nofollow">MSDN: Compiler Options Listed by Category</a>, search by keyword <code>optimization</code>.</p>
<p>HTH</p>
http://stackoverflow.com/questions/727164/how-to-build-openssl-in-release-mode-with-symbols/727721#7277211Answer by twk for How to build OpenSSL in release mode with symbols?twk2009-04-07T21:47:18Z2009-04-07T21:47:18Z<p>link needs /DEBUG. </p>