-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenSSL wrap is not usable as shared library with MSVC #1288
Comments
If I add wrapdb/subprojects/packagefiles/openssl/meson.build Lines 258 to 265 in 3cda0d6
then crypto.lib is produced, but then when linking ssl.dll , I get:
I'm not sure if that's an upstream problem, or if that's not the right place in the Meson overlay. |
Perhaps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When building with MSVC, it fails to find
crypto.lib
if linking to a shared library version of OpenSSL. I believe this occurs when no symbols are exported. From what I can tell of upstream, you would need to define_WINDLL
in order for it to export symbols: https://github.com/openssl/openssl/blob/cf6342bc024868f5a55f2225f2e083415fb1329a/include/openssl/e_os2.h#L97-L98The text was updated successfully, but these errors were encountered: