You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we download OpenSSL with qt-downloader, and it turned out to have 2 major issues:
MSVC binaries are built with VS2010 (!) and require its runtime which is not preinstalled on Win10
MinGW is shipped with OpenSSL 1.0.2 which is incompatible with Qt
Also, qt.io doesn't update OpenSSL often (though our use case is not security-sensitive)
Alternative is to use Conan package. For example, to download OpenSSL built with VS2019 x86_64 following command can be used:
It creates openssl directory which contains necessary dlls in bin. Same can be used for x86. MinGW won't work out of the box so let's start from MSVC x86 and x86_64.
The text was updated successfully, but these errors were encountered:
I think we need a script "download-openssl" which gets following arguments: compiler (mingw/msvc), version (16 or 8 in this case), arch, output dir (goes to --install-folder of conan)
Right now we download OpenSSL with qt-downloader, and it turned out to have 2 major issues:
Also, qt.io doesn't update OpenSSL often (though our use case is not security-sensitive)
Alternative is to use Conan package. For example, to download OpenSSL built with VS2019 x86_64 following command can be used:
It creates
openssl
directory which contains necessary dlls inbin
. Same can be used for x86. MinGW won't work out of the box so let's start from MSVC x86 and x86_64.The text was updated successfully, but these errors were encountered: