Running rvm install ruby-1.9.3-p286
gives me this error:
Error running 'make -j 9', please read /Users/epeterson/.rvm/log/ruby-1.9.3-p286/make.log
There has been an error while running make. Halting the installation.
This took me forever to hunt down. Was trying different versions of make
, gcc
, etc.
It turns out the format of the rvm_make_flags
environment variable has changed from a string to an array and was not well communicated or documented. This may apply to all rvm_* env variables, not sure.
Check your ~/.rvmrc
and project/path/.rvmrc
.
# before
export rvm_make_flags="-j 9"
# after
export rvm_make_flags=(-j 9)
After making this change everything compiled cleanly.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With