GCC 中的 OpenSSL 链接选项 -lssl 和 -lcrypto

发布于 2024-12-26 11:48:39 字数 73 浏览 0 评论 0原文

添加链接选项:-lssl 和 -lcrypto 后,我的程序已正确编译。 但是我发现GCC不包含这两个选项,那么这些选项从哪里来呢?

After adding the link options: -lssl and -lcrypto, my program was correctly compiled.
However, I found GCC doesn't include the two options, so where do the options come from?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯到世界奔溃 2025-01-02 11:48:39

GCC 文档告诉我们 -l是与库链接的选项。

-llibrary
-l library
Search the library named library when linking. (The second alternative with the
library as a separate argument is only for POSIX compliance and is not
recommended.)

所以你告诉 gcc 链接到库“ssl”和“crypto”。这些库通常安装在 /usr/lib 中。在 Linux 上,它们被称为 libssl.solibcrypto.so。在 OS X 上,它们将被称为 libssl.dyliblibcrypto.dylib

The GCC documentation tells us that -l is the option to link with a library.

-llibrary
-l library
Search the library named library when linking. (The second alternative with the
library as a separate argument is only for POSIX compliance and is not
recommended.)

So you're telling gcc to link with the libraries "ssl" and "crypto". These libraries are typically installed in /usr/lib. On Linux they'll be called libssl.so and libcrypto.so. On OS X they'll be called libssl.dylib and libcrypto.dylib.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文