2011/10/02
Installing Ruby Enterprise Edition on OS X Lion
Lionになり、デフォルトのコンパイラが変わっているので、以下のような感じで。
To install Ruby Enterprise Edition on Lion one needs to force the compiler to plain GCC instead of llvm-gcc. This can be done by setting the environment variable CC to /usr/bin/gcc-4.2. For example:
$ sudo bash # export CC=/usr/bin/gcc-4.2 # ./installerOr, when using RVM (from Stack Overflow):
$ rvm remove ree $ export CC=/usr/bin/gcc-4.2 $ rvm install --force reeno title
コメント
トラックバック - http://tech.g.hatena.ne.jp/rx7/20111002