Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 188
Rubinius
Shannon Skipper edited this page Feb 4, 2016 · 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-3.14.tar.bz2 http://releases.rubini.us/rubinius-3.14.tar.bz2 tar -xjf rubinius-release-3.14.tar.bz2 cd rubinius-3.14 sudo bundle install ./configure --prefix=/opt/rubies/rubinius-3.14 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)"