]> git.proxmox.com Git - mirror_edk2.git/commit
CryptoPkg/OpensslLib: fix VS2017 build failure
authorWang, Jian J <jian.j.wang@intel.com>
Tue, 4 Jun 2019 21:18:44 +0000 (05:18 +0800)
committerLiming Gao <liming.gao@intel.com>
Wed, 5 Jun 2019 08:21:35 +0000 (16:21 +0800)
commit0a1b13fd4d2210e2c379ace4fd961fb80126b7e9
tree56841a7b4b84c7b9025175f57d4ed18bd5d5d073
parentcbfdc1b2df65dee011cf33add1dff88de3d9c46d
CryptoPkg/OpensslLib: fix VS2017 build failure

BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1878

This issue is specific to VS2017 which tries to resolve symbol referenced
by a symbol not really referenced eventually.

ossl_init_load_crypto_strings
-> err_load_crypto_strings_int (not really referenced)
-> ERR_load_OSSL_STORE_strings

Because OPENSSL_NO_ERR and OPENSSL_NO_AUTOERRINIT are not defined by
default, err_load_crypto_strings_int() will not be actually referenced
by ossl_init_load_crypto_strings().

Since err_load_crypto_strings_int() is not actually referenced at all,
the fix can be done simply by removing crypto/err/err_all.c from build.

Cc: Dandan Bi <dandan.bi@intel.com>
Cc: Xiaoyu Lu <xiaoyux.lu@intel.com>
Signed-off-by: Jian J Wang <jian.j.wang@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
CryptoPkg/Library/OpensslLib/OpensslLib.inf
CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf