When compiling Qt you can choose one of these options based on the configure command line:

no OpenSSL support (-no-openssl)
QtNetwork dynamically opening OpenSSL libs (-openssl; default)
QtNetwork linking to OpenSSL (-openssl-linked)
The last one means dynamic linking (if Qt is built as a shared library), or static linking (when doing a static build of Qt, i.e. -static).

So the ""solution"" to your problem is passing -static -openssl-linked to Qt's configure.

 

http://stackoverflow.com/questions/14566212/about-compiling-openssl-inside-qt-application

相关文章:

  • 2021-11-22
  • 2022-12-23
  • 2021-08-08
  • 2022-02-03
  • 2022-12-23
  • 2021-04-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-08
  • 2021-05-03
  • 2021-04-14
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
相关资源
相似解决方案