rvm install ruby-1.9.3-p286: Error running 'make -j 9' (OSX: Mountain Lion)

。_饼干妹妹 提交于 2019-12-01 06:19:30

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.

run rvm requirements and it would show all necessary components from RVM to work properly,

on my box, it shows(partial)

# For ruby:
brew install autoconf automake apple-gcc42 libtool pkg-config openssl readline libyaml    sqlite libxml2 libxslt libksba  

so I just run the command, and after than, issue

rvm install 1.9.3
Jason

I'm pretty new at this as well. I was not sure about the directions above, but I had a related problem.

What I found is that I just needed to restart Terminal.

I then used $ type rvm | head -1 and it spit out rvm is a function. Which is what you want to get according to the great article found here:

http://www.moncefbelyamani.com/how-to-install-xcode-homebrew-git-rvm-ruby-on-mac/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!