如何将 Readline 支持编译到 Ruby 中
我的 ruby 版本是用 editline
编译的(在 os x 上),我怀念 irb
中 readline
的功能。
如何使用 readline
支持重新编译 ruby?
My version of ruby was compiled with editline
(on os x) and I miss the features of readline
in irb
.
How do I recompile ruby with readline
support?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还有一个纯 Ruby readline。
There's also a pure ruby readline.
readline
到/usr/local
--with-readline-dir=/usr/local
开关或者 if您之前已经下载了 ruby 源代码并手动构建了它,
ext/readline
文件夹,ruby extconf.rb
,然后运行 制作&&为 ruby 进行安装
过程。readline
to/usr/local
--with-readline-dir=/usr/local
switchor if you have downloaded the ruby sources earlier and built it by hand,
ext/readline
folder of your ruby source treeruby extconf.rb
and then run themake && make install
procedure for ruby.