解決OpenSSL 在VC2015下鏈接報(bào)錯(cuò)的問(wèn)題。
起因:
公司項(xiàng)目?服務(wù)器的nginx是使用的定制版,使用了concat、縮略圖生成等模塊,為了方便同事們?cè)谵k公室環(huán)境下使用nginx,在Windows下編譯nginx,并帶上這兩個(gè)模塊。
之前在 VC2013 之前的版本一直編譯很順利,最近開(kāi)發(fā)環(huán)境改用了 VC2015 突然發(fā)現(xiàn)編譯不過(guò)了。報(bào)了一堆link error!
libeay32.lib(ui_openssl.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
libeay32.lib(cryptlib.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
libeay32.lib(pem_lib.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
libeay32.lib(rsa_sign.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
libeay32.lib(txt_db.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
ssleay32.lib(t1_enc.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
ssleay32.lib(s3_srvr.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
ssleay32.lib(d1_both.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
ssleay32.lib(d1_enc.obj) : error LNK2001: 無(wú)法解析的外部符號(hào) ___iob_func
第一反應(yīng)是 runtime 改變了導(dǎo)致的。 于是找了一臺(tái)帶 vc2013的機(jī)器。搜索頭文件。
VC2015的頭文件中搜索到如下內(nèi)容(corecrt_wstdio.h)
_ACRTIMP_ALT FILE* __cdecl __acrt_iob_func(unsigned);
#define stdin (__acrt_iob_func(0))
#define stdout (__acrt_iob_func(1))
#define stderr (__acrt_iob_func(2))
VC2013的頭文件中搜索到如下內(nèi)容()
_CRTIMP FILE * __cdecl __iob_func(void);
#define stdin (&__iob_func()[0])
#define stdout (&__iob_func()[1])
#define stderr (&__iob_func()[2])
再對(duì)比 openssl。果斷替換成 VC2015的寫法.