当你遇到 undefined reference to 'evp_md_ctx_create' 这样的链接错误时,通常是因为你的项目没有正确链接到包含该函数的库,或者库版本不正确。以下是解决此问题的步骤: 确认evp_md_ctx_create函数的来源库: evp_md_ctx_create 是OpenSSL 库中的一个函数,用于创建一个新的 EVP_MD_CTX 结构,该结构用于消息摘...
Edit: I think I'm nearly there and some quick research brought me to https://stackoverflow.com/questions/46768071/openssl-linking-undefined-reference-evp-md-ctx-new-and-fre and how my nginx might be using the wrong linker? I know the method has been replaced. Thanks for your help!Member...