Prashant Srinivasan's Weblog
Uncooperative irb on Solaris?
Did you just download Ruby on Solaris and realize that irb is uncooperative with history, tab completion, and line editing?
The problem is that it needs the GNU readline extension. Unlike ssl and
curses support, the GNU Readline library is not available on
Solaris/OpenSolaris yet.
To enable this support, install GNU Readline, and then build Ruby
with the appropriate library/include paths. I've included a list
of steps below to save the interested user some time . . .
(1) Download and Install Sun Studio 12. It's pretty easy, pick it
up from http://developers.sun.com/sunstudio/downloads/index.jsp.
It installs into /opt/SUNWspro
(2) Download the latest stable release of Ruby 1.8.6 from ftp://ftp.ruby-lang.org/pub/ruby/stable-snapshot.tar.gz.
(3) Download GNU Readline from ftp://ftp.cwru.edu/pub/bash/readline-5.2.tar.gz
(4) prefix your path with /opt/SUNWspro/bin. Ensure that
/usr/sfw/bin is not in your path for the next step.
(5) run ./configure in, make, and make install
root test4-sp>export PATH="/opt/SUNWspro/bin:/opt/coolstack/bin:/opt/csw/bin:/usr/sbin:/usr/bin"
root test4-sp>./configure --prefix=/export/readline/binaries
[ . . . snip . . .]
root test4-sp>make
[. . .snip . . .]
root test4-sp>make install
root test4-sp>export CFLAGS="-xO4 -g -L/export/readline/binaries/lib/lib -I/export/readline/binaries/include/readline"
export PATH=/opt/SUNWspro/bin:/usr/local/bin:/usr/sfw/bin:/opt/coolstack/bin:/opt/csw/bin:$PATH
export cc=/opt/SUNWspro/bin
./configure --without-gcc --prefix=/export/ruby/builds/ --enable-pthread --with-readline-dir=/export/readline/binaries
root test4-sp>more ~/.irbrc(10) Now you're set. Emacs style command editing in irb, history, and TAB completion of classes should work like a charm!
require 'irb/completion'
ARGV.concat [ "--readline", "--prompt-mode", "simple" ]
Posted at 07:23PM Sep 05, 2007 by prashant in Ruby |
Today's Page Hits: 100
| « December 2009 | ||||||
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 | ||
| Today | ||||||