-
-
Notifications
You must be signed in to change notification settings - Fork 193
Rubinius
Shannon Skipper edited this page Dec 28, 2015
·
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.10.tar.bz2 http://releases.rubini.us/rubinius-2.10.tar.bz2
tar -xjf rubinius-release-2.10.tar.bz2
cd rubinius-2.10
sudo bundle install
./configure --prefix=/opt/rubies/rubinius-2.10
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)"