如何将 Readline 支持编译到 Ruby 中

发布于 2024-08-12 06:55:45 字数 157 浏览 3 评论 0原文

我的 ruby​​ 版本是用 editline 编译的(在 os x 上),我怀念 irbreadline 的功能。

如何使用 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 技术交流群。

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

发布评论

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

评论(2

一张白纸 2024-08-19 06:55:46

还有一个纯 Ruby readline

There's also a pure ruby readline.

冰雪梦之恋 2024-08-19 06:55:45
  1. 安装 readline/usr/local
  2. 从头开始​​重新编译 ruby​​ 并使用 --with-readline-dir=/usr/local 开关

或者 if您之前已经下载了 ruby​​ 源代码并手动构建了它,

  1. 转到 ruby​​ 源代码树的 ext/readline 文件夹,
  2. 输入 ruby extconf.rb,然后运行 ​​制作&&为 ruby​​ 进行安装 过程。
  1. Install readline to /usr/local
  2. Recompile ruby from scratch and use the --with-readline-dir=/usr/local switch

or if you have downloaded the ruby sources earlier and built it by hand,

  1. Go to the ext/readline folder of your ruby source tree
  2. Type ruby extconf.rb and then run the make && make install procedure for ruby.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文