疯狂尝试针对 OpenSSL/libcrypto 进行编译
我已经尝试这样做近三天了。这让我发疯。
正如你所想象的,我对 C++ 还很陌生。
任何人都可以给我一步一步的说明来使用 openssl 中的函数编写 hello world 程序,并从 Windows 上的 cygwin shell 进行编译。
I have been trying to do this for nearly 3 days now. Its driving me nuts.
As you can imagine I'm quite new to C++.
Can anyone give me step by step instructions to do a hello world program making use of a function in openssl and compile it from a cygwin shell on Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您忘记链接 libcrypto。将
-lcrypto
附加到您的链接器标志。You forgot to link with libcrypto. Append
-lcrypto
to your linker flags.