I need the static libs of Openssl. I followed the instructions from here. The steps I did were as follows:
- Run the "Visual Studio 2008 x64 Cross Tools Command Prompt".
- Execute perl Configure VC-WIN64A no-shared no-idea
- Execute ms\do_win64a
- Edited ms\nt.mak and change "32" to "64" in the output dirs.
- Execute nmake -f ms\nt.mak
After doing all this, I get an error on the 5th step:
Assembling: tmp32\md5-x86_64.asm
tmp32\md5-x86_64.asm(8) : error A2009: syntax error in expression
tmp32\md5-x86_64.asm(9) : error A2009: syntax error in expression
tmp32\md5-x86_64.asm(677) : error A2009: syntax error in expression
tmp32\md5-x86_64.asm(678) : error A2009: syntax error in expression
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 8\VC
\BIN\x86_amd64\ml64.EXE"' : return code '0x1'
Stop.
What is going wrong here? Or can anyone provide me a link to the static libs of Openssl that I can use in my Visual Studio 20005?