-
Notifications
You must be signed in to change notification settings - Fork 184
Rubinius
Shannon Skipper edited this page Oct 19, 2013
·
41 revisions
Rubinius is a Ruby implementation, built on LLVM and backed by RubySpec.
| Operating System | Command |
|---|---|
| Debian / Ubuntu |
|
| RedHat / Fedora |
|
| OS X |
|
sudo gem install bundler
wget -O rubinius-release-2.1.1.tar.bz2 http://releases.rubini.us/rubinius-2.1.1.tar.bz2
tar -xzvf rubinius-release-2.1.1.tar.bz2
cd rubinius-2.1.1
sudo bundle install
./configure --prefix=/opt/rubies/rubinius-2.1.1
rake build
sudo rake install
Since [homebrew] installs all libraries into /usr/local/Cellar/ by default, ./configure will not find them by default. Instead, run ./configure with the --with-opt-dir option:
./configure --with-opt-dir="$(brew --prefix openssl):$(brew --prefix readline):$(brew --prefix libyaml):$(brew --prefix gdbm):$(brew --prefix libffi)"