openssl-1.0.1u静态库编译
不管Windows还是linux都是需要安装好perl环境的
Windows步骤
1.解压openssl-1.0.1u.tar.gz
2.使用Vs2005命令行工具进入解压后的目录
3.执行如下命令
perl Configure VC-WIN32 no-asm --prefix=d:/openssl-bin ms\do_ms nmake -f ms\nt.mak nmake -f ms\nt.mak install
然后编译好的库和头文件就在d:/openssl-bin
linux步骤
1.解压openssl-1.0.1u.tar.gz
2.命令行进入解压后的目录
3.执行如下命令
./config --prefix=/root/openssl-1.0.1u/bin no-asm -fPIC no-shared make make install