To compile the static libraries (both release and debug), this is what you need to do:
- Install Perl - www.activestate.com
- Run the "Visual Studio 2008 x64 Cross Tools Command Prompt" (Note: The regular command prompt WILL NOT WORK.)
- Configure with
perl Configure VC-WIN64A no-shared no-idea
- Run: ms\do_win64a
- EDIT ms\nt.mak and change "32" to "64" in the output dirs:
# The output directory for everything intersting
OUT_D=out64.dbg
# The output directory for all the temporary muck
TMP_D=tmp64.dbg
# The output directory for the header files
INC_D=inc64
INCO_D=inc64\openssl
- EDIT ms\nt.mak and remove bufferoverflowu.lib from EX_LIBS if you get an error about it.
- Run: nmake -f ms\nt.mak
- EDIT the ms\do_win64a file and ADD "debug" to all lines, except the "ml64" and the last two lines
- Run: ms\do_win64a
- Repeat steps 4 and 5
- EDIT the ms\nt.mak file and ADD /Zi to the CFLAG list!
- Run: nmake -f ms\nt.mak