amlutz160
amlutz160

Reputation: 476

rvm install 2.1.4 hangs on OSX

when attempting to install a new version of ruby with the command:

rvm install 2.1.4

the process hangs in the middle of compiling:

ruby-2.1.4 - #downloading ruby-2.1.4, this may take a while depending on your connection...
ruby-2.1.4 - #extracting ruby-2.1.4 to /Users/alutz/.rvm/src/ruby-2.1.4....
ruby-2.1.4 - #configuring.....................................................
ruby-2.1.4 - #post-configuration.
ruby-2.1.4 - #compiling.......\

Upvotes: 3

Views: 559

Answers (1)

amlutz160
amlutz160

Reputation: 476

This solved my issue:

rvm install 2.1.4 -- --with-setjmp-type=setjmp

original source of fix

issue report on ruby-lang.org

Upvotes: 7

Related Questions