I'm using RVM to install it and it gives me this error:
The provided compiler '/usr/bin/gcc' is LLVM based, it is not yet fully supported by ruby and gems, please read `rvm requirements`.
I'm on Lion 10.7.3 and I have Xcode 4.3.1.
|
Short answer is you can grab RVM master branch (not stable) to build it with LLVM (not gcc, I mistyped initially). It has appropriate patches to make 1.9.3-p125 to run (at least better) with Xcode 4.3.1 by default. I provided the patch. If you already installed RVM, Background It's happen due to a simple configuration issue of Ruby 1.9.3-p125, it don't allow dynamic link modules to work. This happens if you're using Xcode 4.3.x (Ruby Issue#6080). This issue have fixed in change set r34840. RVM has patch system which provides per-version basis. This patch is included in the RVM (master branch for now) and now default for p125 configuration steps. Xcode 4.3.x Command Line Tool First, With Xcode 4.3.x, you need to install command line tool AFTER installing Xcode 4.3.x, by following directions: 1) Launching Xcode, 2) Open “Preferences” from the “Xcode” item on the menu bar. 3) Select “Downloads” tab (icon). 4) Click “Install” button for “Command Line Tools” (directions borrowed from my friend's site here) If Xcode 4.3.1 is correctly installed, then
autoconf and automake You need autoconf and automake, since Xcode 4.3.x don't have them. Install them either
Recommended installation step with RVM Then, To install specific branch of RVM, you can:
Or if RVM is already installed:
After that, install openssl, iconv and readline using rvm pkg command for best result. I do following lately. Part of this might need to be included to RVM..
Then, finally, install the Ruby.
rvm pkg's help recommend different parameter, the help is broken. So use above for now. You need tcl/tk parameters if you have them via MacPorts(like me) By the way, It is possible to install old Xcode then run rvm with Hope this helps. Additional note on 2012/3/31 iconv don't need to install, also added autoconf/automake requirements for clarifications. Additional note on 2012/4/13 Latest stable does not include the patch require dynamic link to work by default.
you need to add |
|||||||||||||
|
|
As of RVM 1.10.2 all you need is to install the homebrew package
Ciao! [Updated based on comments below] |
|||||||||
|
|
You just need to install gcc-4.2 in /usr/bin. Here is the download https://github.com/downloads/kennethreitz/osx-gcc-installer/GCC-10.7-v2.pkg . And then CC=/usr/bin/gcc-4.2 rvm install 1.8.7 --force |
||||
|
|
I think people are confused that everyone writes
instead you should ONLY write
otherwise it will not work (since stable does not have the corresponding patches yet). |
|||
|
|
|
I also had an issue with ruby-1.9.3-p125, here is what I did, hope this can help someone down the line.
and checked that the new ruby installed with
I then removed the old ruby version
and set the new one ruby ruby-1.9.3-p194 for use and install gems
|
|||
|
|
|
I have installed and tested with the following similar to suggestions above. However I just uninstalled everything and did the basic install for all of these. The only exception was that instead of using the xcode preference dialog to install the command line tools (which failed for me). Apple posted a stand alone which I used in item 2.)
There are articles out there recommending this for ruby >=1.9.3 and thats all I have tested and currently use. I did install and use mysql2, sqlite, and the usual suspect (GEMs) They all compiled and passed some of my basic tests Hope this helps. |
|||
|
rvm get headfixed the issue for me. – Nic Mar 11 '12 at 9:47