使用VS2010编译OpenSSL源码

1, 下载OpenSSL源码;
2, 安装Visual Studio 2010(确认选中: X64编译器和工具);
3, 安装ActivePerl;
4, 下载NSAM;
5, 拷贝nsam.exe和ndisam.exe至D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\目录;
6, 打开Visual Studio Command Prompt 或  Visual Studio x64 Win64 Command Prompt (in the Start menu);
7, 进入OpenSSL源码;
8, 执行: perl Configure VC-WIN32 或 perl Configure VC-WIN64A
9, 执行: ms\do_nasm 或 ms\do_win64a
10, 编译静态库: nmake -f ms\nt.mak 或 nmake -f ms\nt.mak clean
10', 编译动态库: nmake -f ms\ntdll.mak 或 nmake -f ms\ntdll.mak clean
11, 测试: nmake -f ms\nt.mak test 或 nmake -f ms\ntdll.mak test
12, 安装: nmake -f ms\nt.mak install 或 nmake -f ms\ntdll.mak install
13, 输出out32 或 out32dll目录
14, 查看32位或64位: dumpbin /headers libeay32.lib|libeay32.dll

你可能感兴趣的:(使用VS2010编译OpenSSL源码)