windows 編譯openssl

一、windows vs2015 編譯openssl

1,到openssl官網下載源碼。

2,安裝ActivePerl,去官網(
https://www.activestate.com/products/activeperl/downloads/)下載安裝。

ActivePerl具體安裝步驟參考:
https://blog.csdn.net/MarsLee_U/article/details/86491759

3.安裝完畢後,使用 VS2015 下的 VS2015開發者命令提示,進入控制檯模式。


windows 編譯openssl

4.進入openssl源碼目錄,調用命令:perl Configure VC-WIN32 shared no-shared no-asm --prefix="
E:/work/openssl-1.1.0c/win64-release" --openssldir="
E:/work/openssl-1.1.0c/win64-release/ssl"

其中,E:/work/openssl-1.1.0c路徑是源碼目錄, win64-release是輸出目錄, no-shared表示導出靜態庫, 可以改成shared導出動態庫,shared no-shared 表示導出動態庫和靜態庫, VC-WIN32表示32位庫, 可以改成VC-WIN64A編譯64位。

5.編譯Openssl。

<code>

ms

\

do_nasm

nmake

-f

ms

\

ntdll

.mak

nmake

-f

ms

\

ntdll

.mak

test

nmake

-f

ms

\

ntdll

.mak

install

nmake

-f

ms

\

ntdll

.mak

clean

/<code>

說明,如果要編譯靜態庫就使用nt.mak,具體命令如下:

ms\do_nasm 生成makefile文件;

nmake -f ms\ntdll.mak 表示編譯動態庫;

nmake -f ms\nt.mak 表示編譯靜態庫;

nmake -f ms\ntdll.mak test 表示測試編譯後的lib動態庫是否有問題;

nmake -f ms\nt.mak test 表示測試編譯後的lib靜態庫是否有問題;

nmake -f ms\ntdll.mak install 表示安裝頭文件和動態庫文件到前面指定的位置;

nmake -f ms\nt.mak install 表示安裝頭文件和靜態庫文件到前面指定的位置;

nmake -f ms\ntdll.mak clean 表示清除上次動態庫的編譯,以便重新編譯。

nmake -f ms\nt.mak clean 表示清除上次靜態庫的編譯,以便重新編譯。


6.等待編譯完畢後,在win64-release目錄下會生成lib文件夾和include文件夾。

7.測試編譯的Openssl-1.1.0f

命令:nmake test


二、編譯過程中問題

1.\apps\s_cb.c(803) : error C2027: use of undefined type 'in6_addr'

.\apps\s_cb.c(803) : see declaration of 'in6_addr'

.\apps\s_cb.c(836) : error C2027: use of undefined type 'in6_addr'

.\apps\s_cb.c(836) : see declaration of 'in6_addr'

.\apps\s_cb.c(884) : error C2027: use of undefined type 'in6_addr'

.\apps\s_cb.c(884) : see declaration of 'in6_addr'

.\apps\s_cb.c(917) : error C2027: use of undefined type 'in6_addr'

.\apps\s_cb.c(917) : see declaration of 'in6_addr'

NMAKE : fatal error U1077: 'cl' : return code '0x2'

解決方法是禁用IPV6

將原來perl Configure VC-WIN32替換成perl Configure VC-WIN32 -DOPENSSL_USE_IPV6=0

2.ml不是內部或外部命令,也不是可運行的程序或批處理文件

解決方法是 右鍵點擊我的電腦->屬性->高級系統設置->環境變量->系統變量中在path中將ml.exe的路徑添加進去。例如我的ml.exe的路徑是C:\masm32\bin,就在path中添加C:\masm32\bin;

3.fatal error LNK1103: debugging information corrupt; recompile module

解決辦法是 在敲入 ms\do_ms命令後,進入openssl中的ms路徑下,找到ntdll.mak文件,將裡面所有的/debug都刪除掉,然後保存。再使用 VS2015 下的 VS2015開發者命令提示,進入控制檯模式進行編譯。

4.cversion.c.\crypto\cversion.c(80) : error C2065: 'cflags' : undeclared identifier

.\crypto\cversion.c(80) : warning C4047: 'return' : 'const char *' differs in le

vels of indirection from 'int '

NMAKE : fatal error U1077: 'cl' : return code '0x2'

解決:

打開C:\1.1.0c(openssl的安裝目錄)\crypto\cversion.c

在80行 return(cflags); 改成 return(CFLAGS);


5、error LNK2001: 無法解析的外部符號 ___iob_func 問題解決方法:

方法1:VC2015的頭文件中搜索到如下內容(corecrt_wstdio.h),進行替換。

VC2015的頭文件中搜索到如下內容(corecrt_wstdio.h)

<code>_ACRTIMP_ALT FILE* __cdecl __acrt_iob_func(

unsigned

); /<code>

VC2013的頭文件中搜索到如下內容()

<code>_CRTIMP FILE * __cdecl __iob_func(

void

); /<code>

方法2:OpenSSL目錄下e_os.h文件,增加vs2015過濾。

將下面幾行修改,主要是_MSC_VER>=1300修改成_MSC_VER>=1300 && _MSC_VER<1600>

修改前:

<code> 

 

 

 

/<code>

修改後:

<code> 

 

 

 

/<code>


分享到:


相關文章: