RE: Debugging OpenSSL with Visual Studio

2009-10-22 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of sandeep kiran p Sent: Wednesday, 21 October, 2009 23:06 (fairly OT: MS Visual Studio) Thanks Dave. I figured out how to do this. I first built a static version of libeay32 and ssleay32 using ms\nt.mak (added /Zi and

RE: Debugging OpenSSL with Visual Studio

2009-10-21 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of sandeep kiran p Sent: Saturday, 17 October, 2009 02:12 Can someone point me to the instructions that are needed to build and debug OpenSSL using Visual Studio on windows? I want to navigate through the code for the

Re: Debugging OpenSSL with Visual Studio

2009-10-21 Thread sandeep kiran p
Thanks Dave. I figured out how to do this. I first built a static version of libeay32 and ssleay32 using ms\nt.mak (added /Zi and removed /Wx in CFLAGS). I then created an empty VS2005 project and added apps\req.c apps\apps.c apps\app_rand.c to the project (I had to look into req utility, similar

RE: Debugging OpenSSL with Visual Studio 2008

2009-05-24 Thread Derick Naef
- DOPENSSL_NO_DYNAMIC_ENGINE -- View this message in context: http://www.nabble.com/RE%3A-Debugging-OpenSSL-with-Visual-Studio-2008-tp23347192p23675774.html Sent from the OpenSSL - User mailing list archive at Nabble.com. __ OpenSSL Project

RE: Debugging OpenSSL with Visual Studio 2008

2009-05-02 Thread John Saxton
. Bob -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Carter Browne Sent: Friday, April 17, 2009 2:08 PM To: openssl-us...@openssl.org Subject: Re: Debugging OpenSSL with Visual Studio 2008 If you use the step into option

Re: Debugging OpenSSL with Visual Studio 2008

2009-04-17 Thread Carter Browne
It is hard to reply without knowing what you are trying to do, but if you put a break point at the :arg.data=NULL; statement and then use the step over, step into options of the debugger, you should be able to get to the area you are looking for. If VC tells you the breakpoint won't be reached,

RE: Debugging OpenSSL with Visual Studio 2008

2009-04-17 Thread Bob Barnes
-Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Carter Browne Sent: Friday, April 17, 2009 1:38 PM To: openssl-users@openssl.org Subject: Re: Debugging OpenSSL with Visual Studio 2008 It is hard to reply without knowing what you

Re: Debugging OpenSSL with Visual Studio 2008

2009-04-17 Thread Carter Browne
OpenSSL with Visual Studio 2008 It is hard to reply without knowing what you are trying to do, but if you put a break point at the :arg.data=NULL; statement and then use the step over, step into options of the debugger, you should be able to get to the area you are looking for. If VC tells you

RE: Debugging OpenSSL with Visual Studio 2008

2009-04-17 Thread Bob Barnes
] On Behalf Of Carter Browne Sent: Friday, April 17, 2009 2:08 PM To: openssl-users@openssl.org Subject: Re: Debugging OpenSSL with Visual Studio 2008 If you use the step into option when you start debugging, then the debugger will step through the program starting from the beginning. Did you turn off all