Rails Segmentation Fault on Mac OSX with RVM

后端 未结 4 1991
后悔当初
后悔当初 2020-12-03 08:56

When creating a new rails app, I get the following error:

/usr/local/rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/net/http.rb:799: [BUG] Segmentation fault
ruby         


        
4条回答
  •  忘掉有多难
    2020-12-03 09:35

    It looks to me like a problem with LLVM GCC, try with GNU GCC.

    The easiest way to do that is to install osx-gcc-installer and reinstall ruby:

    rvm reinstall 1.9.3
    

    EDIT2: it is also possible to use gcc-4.2 available via HomeBrew/MacPorts, install CommandLineTools and follow instructions from rvm requirements.

    EDIT 1: I've googled around and come across this http://www.seqmedia.com/2012/05/08/frustrations-abound-rvm-vs-macports-and-the-bug-segmentation-fault/ - and I remember it was already mentioned to me openssl in OSX is broken, the easiest way to check it would be:

    rvm get stable
    rvm autolibs enable
    rvm reinstall 1.9.3
    

提交回复
热议问题