从源代码安装 Ruby1.9 时找不到 OpenSSL 标头/库
我正在尝试从源代码安装 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/
是我所需要的。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您尝试过
-I
吗?Did you try
-I
?使用
-I
导出 CFLAGS:我不确定 ~ 扩展是否会完成。如果没有,请尝试使用绝对路径:
Export CFLAGS with
-I
:I'm not sure if ~ expansion will be done. If not, try using absolute paths:
--with-openssl-dir=/home//.local/
是缺少的魔法。--with-openssl-dir=/home/<user>/.local/
was the missing bit o' magic.