从源代码安装 Ruby1.9 时找不到 OpenSSL 标头/库

发布于 2024-09-18 02:02:10 字数 368 浏览 2 评论 0原文

我正在尝试从源代码安装 Ruby 1.9,但我似乎无法让它找出 OpenSSL 标头和库的位置。 ruby-1.9.2/ext/openssl/extconf.rb 说找不到 openssl/ssl.h ——我已经非常肯定地安装在 中>~/.local/include(相应的OpenSSL库位于~/.local/lib中)。

我怎样才能告诉 Ruby 在编译时去哪里寻找 C 库和头文件?

编辑:修复了它,--with-openssl-dir=/home//.local/ 是我所需要的。

I'm trying to install Ruby 1.9 from source, and I can't seem to get it to figure out where the OpenSSL headers and libraries are located. ruby-1.9.2/ext/openssl/extconf.rb says it can't find openssl/ssl.h -- which I've very definitely installed in ~/.local/include (the corresponding OpenSSL library is in ~/.local/lib).

How can I tell Ruby where to look for C libraries and headers when compiling?

EDIT: fixed it, --with-openssl-dir=/home/<user>/.local/ was what I needed.

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

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

发布评论

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

评论(3

豆芽 2024-09-25 02:02:10

您尝试过 -I 吗?

Did you try -I ?

扎心 2024-09-25 02:02:10

使用 -I 导出 CFLAGS:

export CFLAGS="-I~/.local/include"

我不确定 ~ 扩展是否会完成。如果没有,请尝试使用绝对路径:

export CFLAGS="-I/home/user/.local/include"

Export CFLAGS with -I:

export CFLAGS="-I~/.local/include"

I'm not sure if ~ expansion will be done. If not, try using absolute paths:

export CFLAGS="-I/home/user/.local/include"
此生挚爱伱 2024-09-25 02:02:10

--with-openssl-dir=/home//.local/ 是缺少的魔法。

--with-openssl-dir=/home/<user>/.local/ was the missing bit o' magic.

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