简体   繁体   中英

How to know which version of openssl boost ssl is using

I have some questions about boost openssl updation

  1. How can I find out which version of openssl boost ssl is using?
  2. Do we need to recompile the C++ boost application after updating openssl or will updating openssl suffice?
  1. Boost will use the openssl version provided by your system (or explicitly specified during compilation/linkage, check your build script)

  2. It depends on your linkage type, if you link statically against OpenSSL, you will need to recompile. If you are linking dynamically, then updating the DLL/shared object will be enough (unless you linked against a specific version)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM